RosettaCodeData/Task/Special-characters/Java/special-characters-2.java

4 lines
147 B
Java
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
x = x + 2 is the same as x += 2
++ -- //increment and decrement--before a variable for pre (++x), after for post(x++)
== < > != <= >= //comparison