+1
What this for(int j=0;j<=1e8;j++) loop does ? what does 1e8 mean ?
4/3/2018 6:02:41 PM
3 Answers
+5
1e8 means 10^8, i.e. 100,000,000 or a hundred million.
+6
Xan is correct. Just to add, the 'e' stands for 'exponential.' It's all part of the scientific/exponential notation in math.
+3
thank you guys. helped me a lot :)
Send us a message