-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProductMain.java
33 lines (28 loc) · 941 Bytes
/
ProductMain.java
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
class Product {
int pcode;
String pname;
double price;
Product(int pcode, String pname, double price) {
this.pcode = pcode;
this.pname = pname;
this.price = price;
}
}
class ProductMain {
public static void main(String[] args) {
Product product1 = new Product(1, "Product 1", 10.50);
Product product2 = new Product(2, "Product 2", 15.75);
Product product3 = new Product(3, "Product 3", 8.25);
Product cheapestProduct;
if (product1.price<product2.price && product1.price<product3.price){
cheapestProduct = product1;
}
else if (product2.price<product1.price && product2.price<product3.price){
cheapestProduct = product2;
}
else{
cheapestProduct = product3;
System.out.println("The cheapest product is: " + cheapestProduct.pname + "\nprice $" + cheapestProduct.price);
}
}
}