How it started printing from 5, not from 1? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

How it started printing from 5, not from 1?

30th Aug 2019, 8:32 AM
Prathmesh Deshmukh
Prathmesh Deshmukh - avatar
4 Answers
30th Aug 2019, 9:26 AM
Seb TheS
Seb TheS - avatar
+ 5
Link your code so we can know what's wrong.
30th Aug 2019, 8:34 AM
你知道規則,我也是
你知道規則,我也是 - avatar
+ 3
python: for i in range(5,100): print(i) ------------- c++/java/c# etc: for(int i = 5; i < 100; i++){ //print i }
30th Aug 2019, 8:58 AM
Cat Sauce
Cat Sauce - avatar
30th Aug 2019, 10:32 AM
Prathmesh Deshmukh
Prathmesh Deshmukh - avatar