I have this assignment where i should be able to write in as many whole numbers as i want too and then end it with a negative number.
After the negative number the code should be able to print all the numbers backwards except for the negative one.
So something like this:
Whole N1: 302 "Then hit enter"
Whole N2: 32 --||--
Whole N3: 534 --||--
Whole N4: -302 --||--
The amount of positive whole numbers are: 3.
Your numbers backwards is: 203, 23, 435.
I don't really know of where to begin. The course is new and i am new to java. I can use whatever i like here so arrays would be
the best thing i guess but i don't know of where to start.
Any tips?