On the left is code for a class called Product. Fill in the blanks in the code on the right in order to calculate a total and generate the output shown. public class Product { private String name; private double cost; public Product(String n, double c) { name=n; cost=c; } public String getName() { return name; } public double getCost() { return cost; } public String toString() { return (name + "$" + cost); } ArrayList cart = new ArrayList(); double total = 0; cart.add(new Product("Shampoo",13.89)); cart.add(new Product ("Bread",4.99)); cart.add(new Product("Cereal",7.49)); for (Product p : cart) { total total + p.getCost(); } System.out.printf("$%.2f", total); Output: $26.37

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter11: Inheritance And Composition
Section: Chapter Questions
Problem 6PE
icon
Related questions
Question
On the left is code for a class called Product.
Fill in the blanks in the code on the right in order to calculate a total and generate the output shown.
public class Product {
private String name;
private double cost;
public Product(String n, double c) {
name=n;
cost=c;
}
public String getName() {
return name;
}
public double getCost() {
return cost;
}
public String toString() {
return (name + "$" + cost);
}
ArrayList<Product> cart = new ArrayList<Product>();
double total = 0;
cart.add(new Product("Shampoo",13.89));
cart.add(new Product("Bread",4.99));
cart.add(new Product("Cereal",7.49));
for (Product p : cart) {
total total + p.getCost();
}
System.out.printf("$%.2f", total);
Output: $26.37
Transcribed Image Text:On the left is code for a class called Product. Fill in the blanks in the code on the right in order to calculate a total and generate the output shown. public class Product { private String name; private double cost; public Product(String n, double c) { name=n; cost=c; } public String getName() { return name; } public double getCost() { return cost; } public String toString() { return (name + "$" + cost); } ArrayList<Product> cart = new ArrayList<Product>(); double total = 0; cart.add(new Product("Shampoo",13.89)); cart.add(new Product("Bread",4.99)); cart.add(new Product("Cereal",7.49)); for (Product p : cart) { total total + p.getCost(); } System.out.printf("$%.2f", total); Output: $26.37
Expert Solution
steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
Class
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
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning