gpt4 book ai didi

java - 为什么我会收到 NumberFormatException 错误?

转载 作者:行者123 更新时间:2023-12-01 19:47:02 27 4
gpt4 key购买 nike

所以代码应该不断地给出任何给定数字的斐波那契值,直到您输入“q”,但由于某种原因而不是停止,我收到一个错误,有人知道为什么吗?我知道如果你尝试解析一个字符串,它会导致错误,但我有“if(input != "q")”来阻止它,那么为什么它仍然发生?

测试人员类别:

import java.util.Scanner;
public class FibonacciTester
{
public static void main(String[] args)
{
String input = "1";
System.out.println("Input a positive integer that you want to find the fibonacci number for");
System.out.println("Type 'q' to quit");
Scanner in = new Scanner(System.in);
while (input != "q"){
System.out.print("Type in the positive integer");
input = in.next();
if(input != "q"){
int number = Integer.parseInt(input);
FibonacciV fibonacci = new FibonacciV(number);
number = FibonacciV.fibonacci(number);
System.out.println("The Fibonacci number: " + number);
}
}
}
}

类别

public class FibonacciV
{
FibonacciV(int x)
{
}
public static int fibonacci(int x)
{
if (x == 0) //Base case
{
return 0;
}
else if (x == 1) //Second base case
{
return 1;
}
else
{
return fibonacci(x-1)+ fibonacci(x-2); // recursive call
}
}
}

最佳答案

input != "q" 更改为 !input.equals("q")

了解更多关于how to compare strings的信息在java中。

您收到 NumberFormatException 是因为当输入为“q”(不是数字)时它正在运行 Integer.parseInt(input)。代码之所以能够到达此语句,是因为您的字符串比较不正确。

关于java - 为什么我会收到 NumberFormatException 错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52827389/

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