Java - Expression statement: ;
Expression statement is evaluating the expression, then make an evaluation and program execution continues with the next statement.;
Description
expression ;Input
- expression -
Examples
Java
 j = 3;
 ret = j<i;
 x = 10 * 5 -j;Java
Other pieces of example codes:x = 1 | 2;
x = 1.234;
x = 10 * 5;
xmin = -128;
i = x * 5;
b = c == f(5);
Expression statement in another programming language: