求教输入问题
import *;class ex6_5_2{
public static void main(String[] args)throws IOException{
InputStreamReader isr=new InputStreamReader(System.in);
BufferedReader bfr=new BufferedReader(isr);
System.out.print("请输入数字: ");
int shuru=bfr.read();
System.out.println("你输入的数字是:"+shuru);
}
}
上面是我学写的代码,但是我输入的和系统输出的不是同一个数字,为什么?刚学Java没办法!