当前位置: 首页 > 知识库问答 >
问题:

线程“main”java.util.Input中的异常MismatchException

皇甫飞宇
2023-03-14
import java.util.Scanner;

public class D2
{
    public static void main(String[] args)
    {
        Scanner sc = new Scanner(System.in);

        int L1Cs = 80;
        int L2Cs = 120;
        int L3Cs = 160;
        int L1Ct = 100;
        int L2Ct = 140;
        int L3Ct = 180;
        int L1Csv = 100;
        int L2Csv = 150;
        int L3Csv = 200;
        int BSalary = 3000;
        int Stotal, Ttotal, SVtotal;

        System.out.println("Please enter your name");
        int name = sc.nextInt();

        System.out.println("How many sedans have you sold this month");
        int Sedans = sc.nextInt();

        System.out.println("How many trucks have you sold this month");
        int Trucks = sc.nextInt();

        System.out.println("How many SUVs have you sold this month");
        int SUVs = sc.nextInt();


        if(Sedans <= 10)
        {
            Stotal = (L1Cs * Sedans);
        }
        else if (Sedans >= 11 && Sedans <=20)
        {
            Stotal = (L1Cs*10 +(Sedans - 10) * L2Cs);
        }

        else
        {
            Stotal = (L1Cs*10 +L1Cs *10 + (Sedans - 10) * L3Cs);
        }

        System.out.println("Your comission for the sedans is:" + Stotal);


        if(Trucks <= 10)
        {
            Ttotal = (L1Cs * Trucks);
        }
        else if (Trucks >= 11 && Trucks <=20)
        {
            Ttotal = (L1Ct*10 + (Trucks - 10) * L2Ct);
        }
        else
        {
            Ttotal = (L1Ct*10 + L2Ct *10 + (Trucks - 10) * L3Ct);
        }
        System.out.println("Your comission for the trucks is:" + Ttotal);


        if(SUVs <= 10)
        {
            SVtotal = (L1Cs * SUVs);
        }
            else if (SUVs >= 11 && SUVs <=20)
        {
            SVtotal = (L1Csv*10 + (SUVs  - 10) * L2Csv);
        }
        else
        {
            SVtotal = (L1Csv*10 + L2Csv *10 + (SUVs - 10) * L3Csv);
        }
        System.out.println("Your comission for the SUVs is:" + SVtotal);

    double comission = (Stotal + Ttotal + SVtotal);
    double MSalary = (comission + 3000);
    }
}

共有1个答案

艾志尚
2023-03-14

它似乎失败了的提示是:

"Please enter your name"

如果输入的是您的名称,而不是整数,这就是它引发异常的原因。扫描仪将寻找一个整数,而您的名字不是这个整数。您可能需要替换:

int name = sc.nextInt();

与:

String name = sc.next();
 类似资料:
  • 问题内容: 每当我运行此命令时,该函数就可以正常使用。当我选择洞穴时,消息会每隔2秒弹出一次,然后当它越过该部分时,就会出现错误: 我已经尝试过和,并且在该方法中使用时,出现了很多错误。当我在方法中使用时,它不接受我的输入。 当我在该方法中使用时,它不接受我的字符串输入,而直接进入另一个游戏,但是布尔值返回并且它无限地发送垃圾邮件“ Which Cave …”。 我已经阅读了错误报告,以及类似问题

  • 问题内容: 我正在开发一个访问数据库的项目,但是我遇到了一些问题。我尝试使用hibernate3.2和4.52,但是它不起作用。 例外是在这行代码中 问题答案: 您需要在类路径中检查类org.apache.log4j.Level的冲突版本并进行解决。版本1.2.12或更高版本的log4j jar中提供了TRACE级别。

  • 我最近安装了intellij IDEA 14.0,为了确保一切正常,我创建了一个简单的Hello World程序。我不明白为什么输出不正确,为什么会出现这个错误。如果有人能帮忙,那就太好了。 以下是程序: 这是错误:

  • 问题内容: 当我运行程序进行智能卡读取时,会出现此异常。我的设备未连接。请帮我。 问题答案: 这意味着它无法加载您需要的共享库。这可能是因为。 该库不在您的库路径中。 该库名称不正确,例如,Unix上LIBRARY必须为libLIBRARY.so。 您无法执行该库。 该库不适用于操作系统或JVM的位大小。例如64位JVM将不会加载32位库。 您的JRE未正确安装,并且无法加载其自己的库之一。 您正

  • 我不断收到错误消息: 线程“main”java.lang.NumberFormatException.forInputString(NumberFormatException.java:65)在java.lang.Integer.ParseInt(Integer.java:580)在java.lang.Integer.ParseInt(Integer.java:615)在TestClass.Mai

  • 运行代码后,我收到以下错误 线程 “main” java.time.format.DateTimeParseException 中的异常:文本 '03-09-1999' 无法在 java.base/java.time.format.DateTimeFormatter.parseResolved0(DateTimeFormatter.java:2051) at java.base/java.time