這個Java程式出了什麼問題
class Sample2_06
{
public static void main(String args[])throws IOException
{
System.out.println("請輸入兩個整數 ");
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
String str1=br.readLine();
String str2=br.readLine();
int num1=Integer.parseInt(str1);
int num2=Integer.parseInt(str2);
System.out.println("第一個輸入是 " +num1+ " ");
System.out.println("第二個輸入是 " +num2+ " ");
}
}
紅字部份出了問題:
Sample2_06.java:3:cannot find symbol
symbol:class IOException
location:class Sample2_06
public static void main(String args[])throws IOException, 在IOException中就有這符號^指出錯誤
Sample2_06.java:6:cannot find symbol
symbol:class BufferedReader
location:class Sample2_06
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
其他兩個錯誤也是出自於此, 有沒有人知道如何解決這個問題??