Computer Science, asked by adarshjaiswar2110, 1 day ago

Write a program to display 1 to 20 using while loop​

Answers

Answered by Unlikely
0

Answer:

You didn't specify the language but I'll just assume you are using Python

i = 1

while(i<=20):

   print(i)

   i += 1

Answered by sharmaprakriti1312
0

Answer:

Hope THIS WILL HELP YOU DEAR

Attachments:
Similar questions