gpt4 book ai didi

java - 如何修复 Java(扫描程序)中的 'cannot find symbol' 错误?

转载 作者:太空宇宙 更新时间:2023-11-04 07:39:48 25 4
gpt4 key购买 nike

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

int c;
int f;
int tempFaren;

System.out.println("Enter temperature in celcius");
c = keyboard.nextInt();
tempFaren = (9 *c)/5 + 32;

System.out.println( " In Fahrenheit that is " + tempFaren );
}
}

我收到错误 TemperatureChanger.java:7: cannot find symbol Scanner keyboard = new Scanner(System.in)编译期间。我需要做什么来解决这个问题。

最佳答案

您需要import java.util.Scanner;,否则Java将找不到Scanner类。另一种可能性是使用类的完整路径,但现在看来不太实用。

关于java - 如何修复 Java(扫描程序)中的 'cannot find symbol' 错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16247270/

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