Write a python program to print the numbers from 0 to 100 which is divisible by 4 using while loop.PROGRAM:i=0while (i<=100): print(i,end=" ") i=i+4OUTPUT:0 4 8 12 16 20 24 28 32 36 40 44 48 52 56 60 64 68 72 76 80 84 88 92 96 100
No comments:
Post a Comment