Answer the question
In order to leave comments, you need to log in
Z+=i what does this operator do?
Please show an example on Scanner. z+=i what does this operator do?
Answer the question
In order to leave comments, you need to log in
Increases z by i.
For example:
int Z = 10;
int i = 5;
Z+=i;
println(Z); //будет 15
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question