+ 1
some old code
What this for(int j=0;j<=1e8;j++) loop does ? what does 1e8 mean ?
3 odpowiedzi
+ 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 :)