+ 1
Print the basic numbers below 100
It's python. please give me the solution please
5 Antworten
+ 1
for i in range(0, 100):
print(i)
+ 1
for i in range(100):
print(i)
+ 1
why while loops tho, i think for loops are better :)
0
Fuzzy Squid if you doing c++ why not use a for loop?
for(int i = 1; i < 100; i++){
cout << i << endl;
}
0
Thank u allll😺😺😺