package com.xuan.io;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
/*从标准输入设备读取一个整数*/
public class ReadStdinInt {
public static void main(String[] ap){
String line=null;
int val=0;
try{
BufferedReader is=new BufferedReader(new InputStreamReader(System.in));
line=is.readLine();
val=Integer.parseInt(line);
}catch(NumberFormatException ex){
System.err.println();
}catch(IOException e){
System.out.println("Unexpected IO ERROR:"+e);
}
System.out.println("I read this number:"+val);
}
}
(21)从标准输入设备读取一个整数
最新推荐文章于 2023-11-16 01:00:00 发布
这是一个Java程序,演示如何使用`BufferedReader`从标准输入设备读取一个整数。程序通过`System.in`创建`InputStreamReader`,然后读取一行文本并转换为整数。
摘要由CSDN通过智能技术生成