i java
int i=123;
i=i+1;
//is the same as
i+=1;
//or
i++;
//or
++i;
i java
int i=123;
i=i+1;
//is the same as
i+=1;
//or
i++;
//or
++i;
/= java
a /= b;
means divide a by b and put the result in a.
a=4;
a /= 2;
a would now be equal to 2 (4/2)
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us