Java Operators
Java Operators
Java divides the operators into the following groups:
Arithmetic operators
Assignment operators
Comparison operators
Logical operators
Bitwise operators
Arithmetic Operators
, - , * , / , %
Example 1
int a = 4;
int b = 5;
int c = a+b;
...
kingbond470.hashnode.dev2 min read