Need help fixing an error (marked as /****here***/ ) were the JAVA classes are called wrong.

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Need help fixing an error (marked as /****here***/ ) were the JAVA classes are called wrong. 

 

4/
48}
49
50 public class Product { /**
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
00 00 00 00 00
82
83
public static void main (String args[]) {
String name = "Apple";
double price = 0.40;
84 }
85 }
int num = 3;
Product prod = new Product (name, price, num);
// Test 1 - Are instance variables set/returned properly?
System.out.println("Name: " + prod.getCode());
System.out.printf("Price: %.2f\n", prod.getPrice());
+ prod.getCount());
System.out.println("Count:
System.out.println();
**here'
11
// Test 3 - Do setters work properly?
name = "Golden Delicious";
prod.setCode (name);
price = 0.55;
prod.setPrice(price);
num = 4;
prod.setCount (num);
// Test 2 - Are instance variables set/returned properly after adding and selling?
num = 10;
prod.addInventory (num);
num = 5;
prod.sellInventory (num);
System.out.println("Name:
+ prod.getCode());
System.out.printf("Price: %.2f\n", prod.getPrice());
System.out.println("Count: + prod.getCount());
System.out.println();
System.out.println("Name:
+ prod.getCode());
System.out.printf("Price:
%.2f\n", prod.getPrice());
System.out.println("Count: + prod.getCount());
11
*/
*****
Transcribed Image Text:4/ 48} 49 50 public class Product { /** 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 00 00 00 00 00 82 83 public static void main (String args[]) { String name = "Apple"; double price = 0.40; 84 } 85 } int num = 3; Product prod = new Product (name, price, num); // Test 1 - Are instance variables set/returned properly? System.out.println("Name: " + prod.getCode()); System.out.printf("Price: %.2f\n", prod.getPrice()); + prod.getCount()); System.out.println("Count: System.out.println(); **here' 11 // Test 3 - Do setters work properly? name = "Golden Delicious"; prod.setCode (name); price = 0.55; prod.setPrice(price); num = 4; prod.setCount (num); // Test 2 - Are instance variables set/returned properly after adding and selling? num = 10; prod.addInventory (num); num = 5; prod.sellInventory (num); System.out.println("Name: + prod.getCode()); System.out.printf("Price: %.2f\n", prod.getPrice()); System.out.println("Count: + prod.getCount()); System.out.println(); System.out.println("Name: + prod.getCode()); System.out.printf("Price: %.2f\n", prod.getPrice()); System.out.println("Count: + prod.getCount()); 11 */ *****
INMAS∞a
1 import java.util.Scanner;
3 public class Main { /*****
******here*
// TODO: Build Product class with private fields and methods Listed above
private String code;
private double price;
private int count;
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
483
//constructor
public main(String code, double price, int count) {
this.code
code;
this.price price;
this.count count;
}
//getters and setters
public String getCode() {
return code;
}
public void setCode (String code) {
this.code = code;
}
public double getPrice () {
return price;
}
public void set Price (double price) {
this.price price;
}
public int getCount() {
return count;
}
public void setCount(int count) {
this.count count;
}
public void add Inventory (int amt) {
count+=amt;
Product.java
}
public void sellInventory (int amt) {
count-=amt;
}
*******/
Transcribed Image Text:INMAS∞a 1 import java.util.Scanner; 3 public class Main { /***** ******here* // TODO: Build Product class with private fields and methods Listed above private String code; private double price; private int count; 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 483 //constructor public main(String code, double price, int count) { this.code code; this.price price; this.count count; } //getters and setters public String getCode() { return code; } public void setCode (String code) { this.code = code; } public double getPrice () { return price; } public void set Price (double price) { this.price price; } public int getCount() { return count; } public void setCount(int count) { this.count count; } public void add Inventory (int amt) { count+=amt; Product.java } public void sellInventory (int amt) { count-=amt; } *******/
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 2 images

Blurred answer
Knowledge Booster
Top down approach design
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
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education