- import java.util.*;
- import java.io.*;
- public class Demo
- {
- public static void main(String[]agrs)
- {
- //只能输入一次
- //文本扫描器
- System.out.println("请输入一个整数");
- Scanner sr=new Scanner(System.in);
- //nextInt 获得输入值得整数
- int i=sr.nextInt();
- System.out.println(i);
- //不停的输入
- BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
- String len=null;
- int []a=new a[10];
- int j=0;
- while((len=br.readLine())!=null)
- {
- //调用Integer的静态方法parseInt
- int i=Integer.parseTnt(len);
- //验证是是否转换成功
- a[j++]=i;
- }
-
- }
- }
复制代码 |