19.11.2009, 09:58
If I make a variable called poop = 0
how can I make this number to increase by 1(+1)
thanks
how can I make this number to increase by 1(+1)
thanks
poop++;
poop += 1;
poop = poop + 1;
poop++;
poop += 1;
poop = poop+1;
poop += 2;
poop = poop+2;
poop += 3;
poop = poop+3;
poop--;
poop -= 1;
poop = poop-1;
poop -= 2;
poop = poop-2;
poop -= 3;
poop = poop-3;
Originally Posted by hipy
Ty so if I want After a connect let THE number be 1 I have to do on init poop = 0 so the ++ will make it 1?
|