线程" main"中的例外情况java.lang.Error:未解决的编译问题:

时间:2014-03-29 08:37:53

标签: java

这是我遇到的错误

Exception in thread "main" java.lang.Error: Unresolved compilation problems: 
    Scanner cannot be resolved to a type
    Scanner cannot be resolved to a type

    at hello.main(hello.java:11)

这是我的代码。

public class hello {

    public static void main(String[] args) {
        // TODO Auto-generated method stub

        double area;
        double radius;  

        Scanner input = new Scanner(System.in);
        System.out.print("반지름을 입력하시오: ");
        radius = input.nextDouble();
        area = 3.14 * radius * radius;

        System.out.println(area);
    }    
}

2 个答案:

答案 0 :(得分:0)

您是否导入了类似import java.util.Scanner;

的扫描程序类

答案 1 :(得分:0)

你需要:

import java.util.Scanner;

位于文件顶部。你必须导入它。