hammackr
09-10-2005, 05:29 PM
I have a for loop that counts down from 35 to 20.
for(count=3; count>=20; count--)
I have a public variable int numberThirtyfive=35
Initially I need to display the results, 4 numbers to a line.
after I display the results I need to get a sum total of all of the numbers and display it.
Then I need to get an average of all of those numbers and display it.
Can anyone help
for(count=3; count>=20; count--)
I have a public variable int numberThirtyfive=35
Initially I need to display the results, 4 numbers to a line.
after I display the results I need to get a sum total of all of the numbers and display it.
Then I need to get an average of all of those numbers and display it.
Can anyone help