Write the output of the following program segment. [2] Int I,j; for(i=1;i<=5;i++) { for(j=i ;j<=5;j++) { System.out.print(j); } System.out.println(); }
Answers
Answered by
0
Answer:
How many times are the following loop bodies repeated? What is the output of each loop?
Similar questions