Computer Science, asked by sital75, 1 year ago

write the steps to insert 1 to 50 using series

Answers

Answered by CyberPhase
0

for(int i = 1; i<=50; i++){

System.out.println(i);

}


Output:

1

2

3

4

5

6

7

8

.

.

.

49

50

----------------------------------------------------------------------------------

CyberPhase

bit.ly/cyberphase

--> Programming, Ethical Hacking, Video Editing, etc.

----------------------------------------------------------------------------------


Similar questions