0
If I want to increment by 2 or 3 or another numer?
In case x=5; x++; How I can do?
4 Answers
+ 4
you just do
X += y
where y is the value you want to add
+ 5
Yeah @vincentđđ
+ 1
+=
-=
*=
/=
+ 1
thanks guys, You have help me
In case x=5; x++; How I can do?