#apcsa #learnjava
if statements test a boolean expression and if it is true, go on to execute the following statement or block of statements surrounded by curly brackets { } like below.
// A single if statement
if (boolean expression)
Do statement;
// A block if statement
if (boolean expression)
{
Do Statement1;
Do Statement2;
...
Do StatementN;
}
Relational operators (==, !=, less than, greater than, less than or equal to, greater than or equal to) are used in boolean expressions to compare values and arithmetic expressions.
Conditional (if) statements affect the flow of control by executing different statements based on the value of a Boolean expression.
Download
0 formats
No download links available.
3.2 if Statements & Control Flow | CSAwesome APCSA Java | NatokHD