Computer Science, asked by keerthijoy902, 3 days ago

write a program to display even numbers upto 20 using while loop​

Answers

Answered by IIAstuteIshII
2

ɧɛƖƖơ ɱąɬɛ

⇒  its using python

Answer:

# program to print first 20 even numbers using while loop

n=1

while n<=20:

   if n%2==0:

       print(n)

   n+=1

____________________________________

for clarity please refer to the attachments

⇒ first attachment contains the program

⇒second attachment contains the output

_____________________________________

ɧơ℘ɛ ıɬ ɧɛƖ℘ʂ ყơų  ☺

Attachments:
Similar questions