import java.io.IOException; public class text5 { public static void main(String[] args) throws IOException { byte[] b=new byte[10]; System.out.println("Received number="+System.in.read(b)); } }A的输出
时间: 2024-02-02 15:05:09 浏览: 65
Java IO(输入输出)案例练习
如果你在命令行中输入一个字符"A",然后按下回车键结束输入,那么程序的输出结果将是:
```
A
Received number=1
```
其中,"A"是用户输入的字符,"Received number=1"表示程序只读取了1个字节。因为一个英文字母在ASCII码中对应一个字节,所以输入字符"A"时,程序只读取了1个字节。
阅读全文