+ 1
What are Pure Arithmetic Expression in Java?
Pertaining to Java
2 Respuestas
+ 4
A Pure arithmetic expression in Java is an expression containing variables and constants of the same data type only, separated by arithmetic operators(like +, -, *, /, %).
+ 2
Any valid mathematical equation using these following arithmetic operation:
Addition(+)
Subtraction (-)
Division (/)
Multiplication (*)
Modulus(%)
These all falls under arithmetic expressions.