Write a program to display 1 to 20 using while loop
Answers
Answered by
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
0
Answer:
Hope THIS WILL HELP YOU DEAR
Attachments:
Similar questions