bajapro/online-compiler/java_files/userbaru_gmail_com/Order.java
2025-06-07 16:18:13 +07:00

16 lines
276 B
Java

package userbaru_gmail_com;
public class Order {
public static void main(String[] args) {
double itemCost = 30.99;
String order = "";
if(itemCost > 24.00) {
order = "High Value Item!";
} else {
order = "Low Value Item!";
}
System.out.print(order);
}
}