我开始学习Java了。在关注YouTube教程时,我输入了以下代码:
import java.util.Scanner;
public class ageclass {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner in = new Scanner(System.in);
int age;
System.out.println("How older are you?");
age=in.nextInt();
if (age >= 18)
System.out.println("you are old enough to drink");
else
System.out.println("you are not old enough");
}
}
代码抛出了这个错误:
Exception in thread "main" java.lang.Error: Unresolved compilation problem:
at age.ageclass.main(ageclass.java:6)
我看过另一个有答案的帖子,但我无法理解。有人可以向我解释出了什么问题吗?
答案 0 :(得分:2)
如果您正在使用eclipse尝试清理项目。
项目 - >干净...... - >选择你的项目 - >行