Ask Question
12 January, 18:34

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

+1
Answers (1)
  1. 12 January, 20:00
    0
    For (count = 50; count > 0; count--)

    System. out. println (count);
Know the Answer?
Not Sure About the Answer?
Get 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 there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers