+ 2
Program that print 2 to the power of N when N goes from 1 to 100.
one answer per line. Program using a for loop. how high can you count on 100 fingers? is the questions
2 odpowiedzi
+ 4
use long int
+ 2
for i in range(1,100):
print(2**i)
one answer per line. Program using a for loop. how high can you count on 100 fingers? is the questions