0
What does it means; for example: i++ or i--? Note : i as variable.
and what that's using for?
3 Antworten
+ 3
Increment & Decrement operator
https://www.sololearn.com/learn/Java/2141/?ref=app
+ 1
"i-- " is the same as "i-1"
And "i++" is the same as "i+1".
It is using in cycles "for" for to simplify the code.
example: for(int i, i<10, i++)
It's more convenient than "i+1"
0
Marcus McKenzie Thank you so much