Computer Science, asked by utsavrathore, 9 months ago

write the programs to print 1st 20 even number. ​

Answers

Answered by aakarshsaxena0000
0

This program is written in PYTHON language :

for i in range (0,41):

if i%2==0 :

print(i)

else:

print()

That's the normal python program

For complex programming inbox me

Similar questions