If you are a member, Sign In. Or, you can Create a Free account now.
Enter your name and security key.
Syntax template:
if (expression) {
expression1_true_code;
} else if (expression2) {
expression2_true_code;
} else {
otherwise_code;
}
if ((.1 + .1 + .1) == 0.3) { System.out.println("Correct");} else { System.out.println("Not correct");}