Starting Out with Java: Early Objects (6th Edition)
Starting Out with Java: Early Objects (6th Edition)
6th Edition
ISBN: 9780134462011
Author: Tony Gaddis
Publisher: PEARSON
Expert Solution & Answer
Book Icon
Chapter 4, Problem 4FTE

Explanation of Solution

Given statements:

//Switch to score

switch (score)

{

//Case

case (score > 90):

//Assign the grade

grade = 'A';

//Break the statement

break;

//Case

case (score > 80):

//Assign the grade

grade = 'b';

//Break the statement

break;

//Case

case (score > 70):

//Assign the grade

grade = 'C';

//Break the statement

break;

//Case

case (score > 60):

//Assign the grade

grade = 'D';

//Break the statement

break;

//Default Case

default:

//Assign the grade

grade = 'F';

}

Error in the given statement:

Error #1:

The case statements itself cannot contain an expression. The “case” must be carried out with an integer or a character. The given code cannot be modified as the “switch” statement because it contains expressions. It can only be converted into “if-else-if” statement that is given below...

Blurred answer
Students have asked these similar questions
A mail-order house sells five products whose retail prices are as follows: Product 1, $2.98; product 2, $4.50; product3, $9.98; product 4, $4.49 and product 5, $6.87. Write an application that reads a series of pairs of numbersas follows:a) product numberb) quantity soldYour program should use a switch statement to determine the retail price for each product. It should calculateand display the total retail value of all products sold. Use a sentinel-controlled loop to determine when the programshould stop looping and display the final results.
A mail-order house sells five products whose retail prices are as follows: Product 1, $2.98; product 2, $4.50; product3, $9.98; product 4, $4.49 and product 5, $6.87. Write an application that reads a series of pairs of numbersas follows:a) product numberb) quantity soldYour program should use a switch statement to determine the retail price for each product. It should calculateand display the total retail value of all products sold. Use a sentinel-controlled loop to determine when the programshould stop looping and display the final results. give answer in java language   sample output: Enter product number (1-5) (0 to stop): 1Enter quantity sold: 5Enter product number (1-5) (0 to stop): 5Enter quantity sold: 10Enter product number (1-5) (0 to stop): 0Product 1: $14.90Product 2: $0.00Product 3: $0.00Product 4: $0.00Product 5: $68.70
A mail-order house sells five products whose retail prices are as follows: Product 1, $2.98; product 2, $4.50; product3, $9.98; product 4, $4.49 and product 5, $6.87. Write an application that reads a series of pairs of numbersas follows:a) product numberb) quantity soldYour program should use a switch statement to determine the retail price for each product. It should calculateand display the total retail value of all products sold. Use a sentinel-controlled loop to determine when the programshould stop looping and display the final results   sample output: Enter product number (1-5) (0 to stop): 1Enter quantity sold: 5Enter product number (1-5) (0 to stop): 5Enter quantity sold: 10Enter product number (1-5) (0 to stop): 0Product 1: $14.90Product 2: $0.00Product 3: $0.00Product 4: $0.00Product 5: $68.70

Chapter 4 Solutions

Starting Out with Java: Early Objects (6th Edition)

Ch. 4.2 - Write an if-else statement that assigns 0 to the...Ch. 4.4 - Write nested if statements that perform the...Ch. 4.4 - Write code that tests the variable x to determine...Ch. 4.5 - What will the following program display? public...Ch. 4.5 - The following program is used in a bookstore to...Ch. 4.6 - Prob. 4.16CPCh. 4.6 - Assume the variables a = 2, b = 4, and c = 6....Ch. 4.6 - Write an if statement that displays the message...Ch. 4.6 - Write an if statement that displays the message...Ch. 4.7 - Assume the variable name references a String...Ch. 4.7 - Prob. 4.21CPCh. 4.7 - Prob. 4.22CPCh. 4.9 - Rewrite the following if-else statements as...Ch. 4.10 - Complete the following program skeleton by writing...Ch. 4.10 - Rewrite the following if-else-if statement as a...Ch. 4.10 - Explain why you cannot convert the following...Ch. 4.10 - What is wrong with the following switch statement?...Ch. 4.10 - What will the following code display? int funny =...Ch. 4 - The if statement is an example of a __________. a....Ch. 4 - This type of expression has a value of either true...Ch. 4 - , , and = = are __________. a. relational...Ch. 4 - , | |, and ! are __________. a. relational...Ch. 4 - Prob. 5MCCh. 4 - To create a block of statements, you enclose the...Ch. 4 - This is a boolean variable that signals when some...Ch. 4 - How does the character A compare to the character...Ch. 4 - This is an if statement that appears inside...Ch. 4 - Prob. 10MCCh. 4 - When determining whether a number is inside a...Ch. 4 - Prob. 12MCCh. 4 - The conditional operator takes this many operands....Ch. 4 - This section of a switch statement is branched to...Ch. 4 - True or False: The = operator and the == operator...Ch. 4 - True or False: A conditionally executed statement...Ch. 4 - Prob. 17TFCh. 4 - True or False: When an if statement is nested in...Ch. 4 - True or False: When an if statement is nested in...Ch. 4 - True or False: The scope of a variable is limited...Ch. 4 - Find the errors in the following code: 1. //...Ch. 4 - Find the errors in the following code: 2. //...Ch. 4 - Find the errors in the following code: 3. //...Ch. 4 - Prob. 4FTECh. 4 - Find the errors in the following code: 5. The...Ch. 4 - Find the errors in the following code: 6. The...Ch. 4 - The following statement should determine whether...Ch. 4 - Find the errors in the following code: 8. The...Ch. 4 - Prob. 9FTECh. 4 - Write an if statement that assigns 100 to x when y...Ch. 4 - Write an if-else statement that assigns 0 to x...Ch. 4 - Using the following chart, write an if-else-if...Ch. 4 - Write an if statement that sets the variable hours...Ch. 4 - Write nested if statements that perform the...Ch. 4 - Write an if statement that prints the message The...Ch. 4 - Write an if statement that prints the message The...Ch. 4 - Write an if statement that prints the message The...Ch. 4 - Write an if-else statement that displays the...Ch. 4 - Convert the following if-else-if statement into a...Ch. 4 - Match the conditional expression with the if-else...Ch. 4 - Explain what is meant by the phrase conditionally...Ch. 4 - Explain why a misplaced semicolon can cause an if...Ch. 4 - Why is it good advice to indent all the statements...Ch. 4 - What happens when you compare two String objects...Ch. 4 - Prob. 5SACh. 4 - What risk does a programmer take when not placing...Ch. 4 - Prob. 7SACh. 4 - Prob. 8SACh. 4 - Why are the relational operators called...Ch. 4 - How do you use private methods in a class to...Ch. 4 - Roman Numerals Write a program that prompts the...Ch. 4 - Time Calculator Write a program that asks the user...Ch. 4 - TestScores Class Design a TestScores class that...Ch. 4 - Software Sales A software company sells a package...Ch. 4 - BankCharges Class A bank charges 10 per month,...Ch. 4 - ShippingCharges Class The Fast Freight Shipping...Ch. 4 - FatGram Class Design a class with a method that...Ch. 4 - Running the Race Write a program that asks for the...Ch. 4 - The Speed of Sound The following table shows the...Ch. 4 - Freezing and Boiling Points The following table...Ch. 4 - Mobile Service Provider A mobile phone service...Ch. 4 - Mobile Service Provider, Part 2 Modify the program...Ch. 4 - Body Mass Index Write a program that calculates...Ch. 4 - Days in a Month Write a class named MonthDays. The...Ch. 4 - Book Club Points Serendipity Booksellers has a...Ch. 4 - Magic Dates The date June 10, 1960, is special...Ch. 4 - Hot Dog Cookout Calculator Assume that hot dogs...Ch. 4 - Roulette Wheel Colors On a roulette wheel, the...Ch. 4 - Wi-Fi Diagnostic Tree Figure 3-23 shows a...Ch. 4 - Restaurant Selector You have a group of friends...
Knowledge Booster
Background pattern image
Similar questions
SEE MORE QUESTIONS
Recommended textbooks for you
  • Text book image
    EBK JAVA PROGRAMMING
    Computer Science
    ISBN:9781305480537
    Author:FARRELL
    Publisher:CENGAGE LEARNING - CONSIGNMENT
Text book image
EBK JAVA PROGRAMMING
Computer Science
ISBN:9781305480537
Author:FARRELL
Publisher:CENGAGE LEARNING - CONSIGNMENT