Computer Science, asked by udaychanpa635, 7 months ago

1
2 3
4 5 6
7 8 9 10
write a program using while loop to display above output



PlZzzzz it's urgent​

Answers

Answered by yachikayachika44
0

Answer:

1

2 3

4 5 6

7 8 9 10

11 12 13 14 15

1617 18 19 20 21

this is your pluzzzz

Answered by anindyaadhikari13
2

Question:-

Write a program using while loop to display the following output.

1

2 3

4 5 6

7 8 9 10

Program:-

This is written in python.

a=1

for i in range(1,5):

for j in range(0,i):

print(a, end=" ")

a=a+1

print()

Similar questions