今天的一道练习题:- import java.util.*;
- public class Demo2 {
- public static void main(String[] args) {
- List<Integer> list=new ArrayList<Integer>();
- Scanner sc=new Scanner(System.in);
- System.out.println("输入整数,以0结束:");
- while(true){
- int a=sc.nextInt();
- if(!(a==0)){
- list.add(a);
- }else{
- break;
- }
- }
- Integer[] in=list.toArray(new Integer[list.size()]);
- Arrays.sort(in);
- System.out.println(in[0]);
- }
- }
复制代码 |
|