Database System Concepts
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
Bartleby Related Questions Icon

Related questions

Question

Fix this program

 

import java.util.Scanner;

public class main {
   public static void WeShipItBad(String[] args) {  
      int OVERNIGHT_CHARGE = 5;
      int TWO_DAY_CHARGE = 2;
      int ECONOMY_CHARGE = 1;
      Scanner console = new Scanner(System.in);  // Scanner object to pass around.
      // Get item description.
      String itemDescription = getItemDescription(console);
      if (itemDescription.equals("")) {
      System.out.println("Invalid description.");
      }
      shipWeight = getShipWeight(scnr);
      if (shipWeight <= 0.0) {
      System.out.println();
      System.out.println("Invalid weight.");
      }
      char shipMethod = getShipMethod(council);
      shipMethod = Character.toUpperCase(shipMethod);
      double shipCost = calculateShip(shipWeight, shipMethod);
      displayResults(itemDescription, shipCost, shipMethod, shipWeight);
   }
   public static void getItemDescription(Scanner console) {
      System.out.println("Enter item description:");
      String description = keyboard.nextLine();
      return description;
   }
   public static double getShipWeight(Scanner console) {
      System.out.print("Enter item weight (in lbs): ");
      int weight = consoal.nextInt();

      return weight;
   }

   // Prompts the user for the shipping method and returns it.
   public static char getShipMethod(Scanner console) {
      char method;

      System.out.print("Enter ship method (O)vernight - (T)wo Days - (E)conomy: ");
      method = console.next().charAt(0);  // I've been told to leave this line in here.
                                           // Will be explained in class.
      return method;
   }

   // Calculates and returns the shipping charge.
   public static double calculateShipping(char method, double weight) {

      double shipCharge = 0.0;

      if (method == 'o') {
      shipCharge = weight * 5;
      } else if (method == 'T') {
      shipCharge = weight * 3;
      } else 
      shipCharge = weight * 2;
      return shipCharge;
   }

   // Print shipping charge invoice.
   public static void displayResults(String description, float weight, char method, double cost) {
      System.out.println("*** WE SHIP INVOICE ****");
      System.out.println("Item Description: ", description);
      System.out.printf("Item Weight: %.3f\n", cost);
      System.out.println("Ship Method: " + method);
      System.out.printf("Total Cost: $%.1f\n" + cost);
      System.out.println();
      System.out.print("Like this program? Hire me!! ");
      System.out.println("Email: nadhaSkolar@shouldHaveGoneToVanderbilt.edu");
   }
}

 

 

Expert Solution
Check Mark
Knowledge Booster
Background pattern image
Computer Science
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
SEE MORE QUESTIONS
Recommended textbooks for you
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education