I have 3 really short netbeans project
Name: ____________________________
Date:_____________________________
Period:____________________________
Ch 7: Array Programming Assignment #3
Write a program that takes 10 integers as input. The program places the even integers into an array evenNums, the odd integers into an array called oddNums, and the negative integers into an array called NegNums. The program displays the contents of the three arrays after all the integers have been entered.
Save your work as sortingArrays.java
Sample output:
Even Numbers Odd Numbers Negative Numbers
------------------- ------------------- --------------------------
6 9 -33
2 7 -3
4 5 -1
8 19 -2
10 11 -10
12 13 -14
90 95 -66
14 15 -16
36 17 -6
AP Comp Sci – Ch 7–Arrays Mrs. Ramirez