Syntax for the if statement if( <boolean expression> <then block> 1 se Boolean Expression <else block> ·°····。···。··。······ °。。。。。。。。。 ··················.··着·····················。 Then block messageBox. show("You did not pass")i else Else block messageBox. show( You did pass )i C 2000 McGraw-Hill Introduction to Object-Oriented Programming with Java--Wu Chapter 6-4© 2000 McGraw-Hill Introduction to Object-Oriented Programming with Java--Wu Chapter 6 - 4 if ( testScore < 70 ) messageBox.show("You did not pass"); else messageBox.show("You did pass"); Syntax for the if Statement if ( <boolean expression> ) <then block> else <else block> Then Block Else Block Boolean Expression