/*
使用键盘录入的方式将键盘录入的数存放在指定的数组中
*/
import java.io.*;
class Test2
{
public static void main(String[] args)
{
InputStream in = null;
try
{
in = System.in;//键盘录入
int[] arr = new int[5];
for (int x=0; x<arr.length; x++)
{
arr[x] = in.read();//获取键盘录入的值,并将该值存储到数组中
System.out.println("arr["+x+"]="+(char)arr[x]);//将数组中的值强转成char类型打印出来
}
}
catch (IOException e)
{
throw new RuntimeException("键盘录入失败");
} |
|