go to previous page   go to home page   go to next page hear noise highlighting

Answer:

The "opposite" of   <=   is   > .


Several Choices

Often there are several options that might be included in a major purchase. Each one might be accepted or rejected. Say that you are buying a new car:

You have decided to buy a new sports car. The base price is $20,000. There are two options:

The price of the car is the base price plus the price of the options. Write a program that calculates the price of the car.

Here is an incomplete version. The user is expected to enter "1" to mean true and "0" to mean false. (There are better ways to do this which will be covered in later chapters.)

Notice how the number in totalCost is accumulated: it is initialized in its declaration, then added to in each of the true branches.

racingstripes

import java.util.Scanner;
public class CarPurchase
{
  public static void main (String[] args) 
  { 
    final int basePrice  = 20000;   // base price in dollars
    final int pinPrice   =   250;   // pin stripe price
    final int brakePrice =   800;   // anti-lock brake price

    Scanner scan = new Scanner( System.in );
 
    int answer;
    int totalCost = basePrice;

    System.out.print("Do you want pin stripes (0 or 1)? ");
     
    answer = scan.nextInt();        
    if (  )
    {
      totalCost = totalCost + pinPrice;
    }

    System.out.print("Do you want anti-lock brakes (0 or 1)? ");
    answer = scan.nextInt(); 
    if (  )
    {
      totalCost = totalCost + brakePrice;
    }

    System.out.println("Total cost is: $" + totalCost ); 
  }
}

QUESTION 10:

Fill in the two blanks to complete the program. You may wish to copy the program to a file and try it out.


go to previous page   go to home page   go to next page