+ 2
To print 1st 10 even no.
4 Antworten
+ 1
#py
a,i = 0,0
while(i<10):
print(a)
a +=2
I +=1
it will print first 10 even numbers
+ 3
Can you show us your try first? In addition, what programming language are you writing this in?
+ 2
Thanks
0
Sorry I got the ans