1 | This statement is also called a "conditional" statement. It tests a "condition" and if it's true, it executes the first set of statements, and if it's false, instead it executes a second set of statements. |
2 | if ( num == 0 ) |
3 | { y = 0; g.setColor ( Color.red ); } |
4 | else |
5 | { y = 1; g.setColor ( Color.black ); } |
6 | if and else are keywords |
7 | The condition is in ( )s. |
8 | If the condition is true, execute these statements, |
9 | otherwise these. |