Ask Question
28 December, 04:43

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. 28 December, 06:06
    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 and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers