Assignemnt #27: Variables Only Hold Values

Code

      /// Name: Cassie
      /// Period: 6
      /// Program Name: Variables Only Hold Values
      /// File Name: Sequencing.java
      /// Date Finished: 10/13/2015
      
      import java.util.Scanner;
      
      class Sequencing
      {
          public static void main( String[] args )
          {
              //BROKEN
              
              Scanner keyboard = new Scanner(System.in);
              double price, salesTax, total;
              
              System.out.print( "How much is the purchase price? " );
              price = keyboard.nextDouble();
              
              
              salesTax = price * 0.0825;
              total = price + salesTax;
              
              System.out.println( "Item price:\t" + price );
              System.out.println( "Sales tax:\t" + salesTax );
              System.out.println( "Total cost:\t" + total );
          }
      }
    

Picture of the output

Assignment 27