+ 5
What does i mean in Java?
3 ответов
+ 12
It's not specific to Java either. i can be a variable name in many different languages. For loop iterations i may stand for index.
+ 10
Its just a variable name used in for loops its short for "iteration" but theres no diffrenece between using i or any other variable name you could use x instead if you wanted.
+ 2
I is the name of the variable declared to be of int type, used for loops that I know of, for loops etc. It could easily be a different letter.