Tuesday, December 22, 2015

if statement


12/22/2015

Source: http://freejavaguide.com/corejava3.htm

The if-else class of statements should have the following form:

if (condition) {
statements;
}

if (condition) {
statements;
} else {
statements;
}

if (condition) {
statements;
} else if (condition) {
statements;
} else {
statements;
}




No comments:

Post a Comment