Read this chapter, which reviews how computers make decisions using if statements. As you read this tutorial, you will understand that sometimes it is important to evaluate the value of an expression and perform a task if the value comes out to be true and another task if it is false. In particular, try the simulated program under the heading "Simulated Program" to see how a different response is presented to the user based on if a number is positive or negative.
Pay special attention to the "More Than One Statement per Branch" header to learn how the 'else' statement is used when there is more than one choice.
11. Practice
Answer:
if ( num < 0 )
System.out.println("The number " + num + " is negative."); // true-branch
else
{
System.out.println("The number " + num + " is zero or positive"); // false-branch
System.out.print ("Positive numbers are greater "); // false-branch
System.out.println("or equal to zero. "); // false-branch
}
System.out.println("Good-bye for now"); // always executed
The true branch has one statement. The false branch has one statement, a block containing three statements.
Practice
At a movie theater box office a person less than age 13 is charged the "child rate". Otherwise a person is charged the "adult rate." Here is a partially complete program that does this:
import java.util.Scanner; public class BoxOffice { public static void main (String[] args) { Scanner scan = new Scanner( System.in ); int age; System.out.println("Enter your age:"); age = scan.nextInt(); if ( ) { System.out.println("Child rate."); } else { System.out.println("Adult rate."); } System.out.println("Enjoy the show."); // always executed } } |
In this program, the true branch and the false branch are both blocks. Each block contains only one statement, but this is OK. Often programmers do this for clarity.
Question 11:
Fill in the blank so that a person under the age of 13 is charged the child rate.