Tell me, please, but why is the output command after the loop used here? we have already indicated it in the cycle itself ...
for (int i = 0; i <= SIZE; i++) { System.out.print(i + " "); } System.out.println(); Tell me, please, but why is the output command after the loop used here? we have already indicated it in the cycle itself ...
for (int i = 0; i <= SIZE; i++) { System.out.print(i + " "); } System.out.println(); Try to write more detailed questions. To get an answer, explain what exactly you see the problem, how to reproduce it, what you want to get as a result, etc. Give an example that clearly demonstrates the problem. If the question can be reformulated according to the rules set out in the certificate , edit it .
Source: https://ru.stackoverflow.com/questions/875708/
All Articles