-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuildingProject.java
More file actions
50 lines (22 loc) · 920 Bytes
/
BuildingProject.java
File metadata and controls
50 lines (22 loc) · 920 Bytes
1
2
3
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
48
49
50
import javax.swing.JOptionPane;
public class BuildingProject{
public static void main(String[] args) {
double initialBudget;
initialBudget=Double.parseDouble(JOptionPane.showInputDialog("What is your budget?"));
System.out.println("The initial budget for the Bathroom remodel is $" + initialBudget);
System.out.println("Material" + "\t" + "Cost" + "\t" + "Total Cost" + "\t" + "Remaining Budget");
BuildingMaterial intB = new BuildingMaterial(initialBudget);
BuildingMaterial seat = new BuildingMaterial();
displayD(seat);
BuildingMaterial bowl = new BuildingMaterial();
displayD(bowl);
JOptionPane.showMessageDialog(null, "You need to change the price of the bowl");
bowl.revisePrice();
bowl.displayData("R");
System.out.println("");
BuildingMaterial.budgetRemain();
}
public static void displayD(BuildingMaterial a){
a.displayData();
}
}