您好,我正在尝试运行一些 java,但是我不断收到一条错误消息,这是消息:
unreported exception IOException; must be caught or declared to be thrown myName = in.readLine();
import java.io.*;
public class While{
public static void main(String []args){
int num = 0;
while (num != 999){
System.out.println("Enter a number:");
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
num = Integer.parseInt(in.readLine());
System.out.println("You typed: " + num);
}
System.out.println("999 entered, so the loop has ended.");
}
}
直截了当,我没有使用过 java,这是我第一次使用它,我的老板问我是否可以看一下到目前为止,我已经能够做所有事情但我无法修复此错误消息,欢迎任何和所有帮助。