【发布时间】:2014-10-13 22:25:29
【问题描述】:
我一直在使用搜索工具寻找答案,但在能够解决我之前的几个问题后,我现在陷入困境。我能够进行比较和调整,但现在我不明白我的程序出了什么问题。
我在第一年学习从 Java 开始的计算机编程。我读过很多人说要使用equalsIgnoreCase,但我们还没有学会它,这就是我现在被教导的方式。我还阅读了一篇帖子,说 if (discount) 可能比 if (discount == true) 更好,但我从来没有使用过 if 语句而不在它旁边显示变量。
起初,它对我输入的每个名称给予折扣,包括那些不在指定给予折扣的 4 个名称中的人。现在它不会对 4 个名字中的任何一个(迈克、迈克、黛安、黛安)打折。
我觉得这是一个很小的错误,但我似乎无法弄清楚。
import java.util.Scanner;
import java.text.DecimalFormat;
public class PizzaOrder
{
public static void main (String [] args)
{
DecimalFormat formatter = new DecimalFormat("#0.00");
Scanner keyboard = new Scanner (System.in);
String firstName;
boolean discount = false;
int inches;
char crustType;
String crust = "Hand-tossed";
double cost = 12.99;
final double TAX_RATE = .08;
double tax;
char choice;
String input;
String toppings = "Cheese ";
int numberOfToppings = 0;
System.out.println("Welcome to Mike and Diane's Pizza");
System.out.print("Enter your first name: ");
firstName = keyboard.nextLine();
if (firstName == "Mike" || firstName == "mike")
{
discount = true;
}
if (firstName =="Diane" || firstName == "diane")
{
discount = true;
}
System.out.println("Pizza Size (inches) Cost");
System.out.println(" 10 $10.99");
System.out.println(" 12 $12.99");
System.out.println(" 14 $14.99");
System.out.println(" 16 $16.99");
System.out.println("What size pizza would you like?");
System.out.print("10, 12, 14, or 16 (enter the number only): ");
inches = keyboard.nextInt();
if (inches == 10)
{
cost = 10.99;
}
if (inches == 12)
{
cost = 12.99;
}
if (inches == 14)
{
cost = 14.99;
}
if (inches == 16)
{
cost = 16.99;
}
else
System.out.println("You have selected incorrect pizza size.");
System.out.println("You have been assigned 12 inch pizza by default.");
keyboard.nextLine();
System.out.println("What type of crust do you want? ");
System.out.print("(H)Hand-tossed, (T) Thin-crust, or " +
"(D) Deep-dish (enter H, T, or D): ");
input = keyboard.nextLine();
crustType = input.charAt(0);
switch (crustType)
{
case 'H':
case 'h':
System.out.println("You have selected Hand-tossed crust.");
break;
case 'T':
case 't':
System.out.println("You have selected Thin-crust.");
break;
case 'D':
case 'd':
System.out.println("You have selected Deep-dish crust.");
break;
default:
System.out.println("You have selected invalid type of crust.");
System.out.println("You have been assigned Hand-tossed crust by default.");
break;
}
System.out.println("All pizzas come with cheese.");
System.out.println("Additional toppings are $1.25 each,"
+" choose from");
System.out.println("Pepperoni, Sausage, Onion, Mushroom");
System.out.print("Do you want Pepperoni? (Y/N): ");
input = keyboard.nextLine();
choice = input.charAt(0);
if (choice == 'Y' || choice == 'y')
{
numberOfToppings += 1;
toppings = toppings + "Pepperoni ";
}
System.out.print("Do you want Sausage? (Y/N): ");
input = keyboard.nextLine();
choice = input.charAt(0);
if (choice == 'Y' || choice == 'y')
{
numberOfToppings += 1;
toppings = toppings + "Sausage ";
}
System.out.print("Do you want Onion? (Y/N): ");
input = keyboard.nextLine();
choice = input.charAt(0);
if (choice == 'Y' || choice == 'y')
{
numberOfToppings += 1;
toppings = toppings + "Onion ";
}
System.out.print("Do you want Mushroom? (Y/N): ");
input = keyboard.nextLine();
choice = input.charAt(0);
if (choice == 'Y' || choice == 'y')
{
numberOfToppings += 1;
toppings = toppings + "Mushroom ";
}
cost = cost + (1.25*numberOfToppings);
System.out.println();
System.out.println("Your order is as follows: ");
System.out.println(inches + " inch pizza");
System.out.println(crust + " crust");
System.out.println(toppings);
if (discount)
{
System.out.println("You are eligible for $2.00 discount.");
cost -= 2.00;
}
System.out.println("The cost of your order is: $" + formatter.format(cost));
tax = cost * TAX_RATE;
System.out.println("The tax is: $" + formatter.format(tax));
System.out.println("The total due is: $" + formatter.format((tax+cost)));
System.out.println("Your order will be ready for pickup in 30 minutes.");
}
}
【问题讨论】:
标签: java if-statement boolean