gpt4 book ai didi

java - 尽管Java中没有任何错误,但在输入Char之前代码崩溃

转载 作者:行者123 更新时间:2023-12-04 22:40:10 25 4
gpt4 key购买 nike

我正在编写代码,要求我将华氏温度转换为摄氏温度,反之亦然,并将它们存储在数组中。完成并解决了侧面显示的错误之后,到达循环结束后仍然设法崩溃。我尝试做一些我在网上看到的事情,但到目前为止似乎没有任何效果。我正在使用NetBeans IDE 8.0.2

我得到的错误是:java.lang.StringIndexOutOfBoundsException:字符串索引超出范围:0

完整的代码是:

package assignment.pkg1;

import java.util.Scanner;

public class Assignment1 {

public static void main(String[] args)
{
controller();
}
//----------------------------controller()--------------------------------------
public static void controller()
{
Scanner kb = new Scanner(System.in);
double num[]=new double[10], cel, fah, tem;
char ch;
for(int x=0; x<10; x++) //This loops ten times to get ten tempretures
{
System.out.print("Please enter your tempreture :");
num[x]=kb.nextDouble();
}

System.out.println();
System.out.println("Is the data you are entering in Fahrenheit or Celcius?");
System.out.println("Please enter C for Celcius or F for Fahrenheit : ");

ch = kb.nextLine().charAt(0);
if (ch !='C' || ch !='c')
{
for(int x =0;x<10;x++)
{
fah=ctof(num[x]);
System.out.println(num[x]+" degrees C = "+fah+" degrees F");
}
}
if (ch =='F' || ch =='f')
{
for(int x =0;x<10;x++)
{
cel=ftoc(num[x]);
System.out.println(num[x]+" degrees F = "+cel+" degrees C");
}
}

}
//----------------------------ctog()--------------------------------------------
public static double ctof(double cel)
{
double tem;
//fah = cel / 5 + 32;
tem = (cel / 5) + 32;
return tem;
}
//----------------------------ftoc()--------------------------------------------
public static double ftoc(double fah)
{
double tem;
//cel = (fah - 32)/9 * 5
tem = (fah - 32) /9 * 5;
return tem;
}
}

最佳答案

在调用kb.nextLine();之后,在您的for循环中添加.nextDouble();,因为nextDouble()不占用换行符(\ n)。

如果不这样做,您将为没有第一个索引的空字符串执行charAt(0) \\ first index

关于java - 尽管Java中没有任何错误,但在输入Char之前代码崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59056917/

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