17.09.2011, 00:58
thats not english. its just scientific notation. grab any calculator, and type
9999999999*9999999999
it will print something like 1.9e19 ? this could be like 1.9 , shifting the comma 19 digits to the right. thats
199,999,999,999,999,999,999 then. no calculator can display that large numbers coz the display is too small.
so it will tell you "the number starts with 1 and got 19 digits behind. quite large. 1.9 fantasticillions? ^^
1e3 is 1.000 times 10^3, which is 1000 btw, so you get your 1 with 3 more zeros. thats a thousand.
e3=1k
e6=1m
e30= ? = amount of atoms in our universe? didnt count them yet ^^
EDIT bk: math, my favorite btw heheh
the variable "count" will result in 500*500, or 250000, or:
9999999999*9999999999
it will print something like 1.9e19 ? this could be like 1.9 , shifting the comma 19 digits to the right. thats
199,999,999,999,999,999,999 then. no calculator can display that large numbers coz the display is too small.
so it will tell you "the number starts with 1 and got 19 digits behind. quite large. 1.9 fantasticillions? ^^
1e3 is 1.000 times 10^3, which is 1000 btw, so you get your 1 with 3 more zeros. thats a thousand.
e3=1k
e6=1m
e30= ? = amount of atoms in our universe? didnt count them yet ^^
EDIT bk: math, my favorite btw heheh
Код:
new count;for(new id=0;id<MAX_PLAYERS;id++){for(new id2=0;id<MAX_PLAYERS;id++){count++;}}
Код:
0.5e2 * 0.5e2 = (0.5*0.5)e4 = 250000 500 * 500 = ( 0.25 ) e4 = 250000