import java.io.*;
public class and{
public static void main(String args[]){
throws IOException
int x;
x=System.in.read(x);
System.out.print(x);
}
}这个程序是有问题的...我真菜...刚学...
參考答案:public static void main(String args[])throws IOException//抛出异常放在这里 {
int x;
x=System.in.read(); //read()的构造方法里没有接受int的
System.out.print(x);
}