4 lines
147 B
Java
4 lines
147 B
Java
|
|
x = x + 2 is the same as x += 2
|
||
|
|
++ -- //increment and decrement--before a variable for pre (++x), after for post(x++)
|
||
|
|
== < > != <= >= //comparison
|