gpt4 book ai didi

java - 如何让switch语句更加准确?

转载 作者:行者123 更新时间:2023-11-30 03:35:24 25 4
gpt4 key购买 nike

我们被要求使用 switch 语句编写一个程序..

这是我的代码:

    double price = 0, totalPrice;

System.out.print("Enter the number of your choice: ");
int optionNumber = Integer.parseInt(kb.readLine());

switch(optionNumber)
{
case 1:
price = 190.00;
break;
case 2:
price = 410.00;
break;
default:
System.out.println("ERROR: Invalid number!");
break;
}

System.out.print("Enter quantity: ");
int quantity = Integer.parseInt(kb.readLine());

totalPrice = price * quantity;

所以基本上,用户将输入一定的数字,并且在 switch 语句内会有不同的价格。但如果用户输入错误的数字,它将显示一条错误消息,并且我不希望用户输入将在 switch 语句之后执行的数量。我们不允许使用任何方法或函数,我不想像这样重复编码:

    System.out.print("Enter the number of your choice: ");
int optionNumber = Integer.parseInt(kb.readLine());

switch(optionNumber)
{
case 1:
price = 190.00;
System.out.print("Enter quantity: ");
int quantity = Integer.parseInt(kb.readLine());
totalPrice = price * quantity;
System.out.print("Total price: " + totalPrice);
break;
case 2:
price = 410.00;
System.out.print("Enter quantity: ");
int quantity = Integer.parseInt(kb.readLine());
totalPrice = price * quantity;
System.out.print("Total price: " + totalPrice);
break;
default:
System.out.println("ERROR: Invalid number!");
break;
}

有没有其他方法可以不重复使用if else、方法、函数或编码?任何帮助将不胜感激。

最佳答案

您可以使用 boolean 标志,如果选择了无效选项,则将其设置为 false。
然后仅进一步询问用户 flag 是否为 true。

    System.out.print("Enter the number of your choice: ");
int optionNumber = Integer.parseInt(kb.readLine());
boolean flag = true;
switch (optionNumber) {
case 1:
price = 190.00;
break;
case 2:
price = 410.00;
break;
default:
flag = false;
System.out.println("ERROR: Invalid number!");
break;
}
if (flag) {
System.out.print("Enter quantity: ");
int quantity = Integer.parseInt(kb.readLine());
totalPrice = price * quantity;
System.out.print("Total price: " + totalPrice);
}

关于java - 如何让switch语句更加准确?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28046936/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com