Ask Question

Write a for loop that prints the integers 50 through 1, each on a separate line. use no variables other than count.

+2
Answers (1)
  1. 5 September, 17:04
    0
    For (count = 50; count > 0; count--)

    System. out. println (count);
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “Write a for loop that prints the integers 50 through 1, each on a separate line. use no variables other than count. ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers