作业-数字
Posted 北有孤鹜
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了作业-数字相关的知识,希望对你有一定的参考价值。
package fiveint; import java.util.InputMismatchException; import java.util.Scanner; public class Five{ public static void main(String[] args) { System.out.println("请输入5个整数,输入0结束:"); int a[]=new int[5]; Scanner put=new Scanner(System.in); try { int n; for(int i=0;(n=put.nextInt())!=0;i++) { a[i]=n; } } catch(InputMismatchException e) { System.out.println("输入有误,请输入整数。"); } catch(ArrayIndexOutOfBoundsException e) { System.out.println("输入有误,请输入5个整数。"); } finally { System.out.println("谢谢使用本程序!"); } } }
以上是关于作业-数字的主要内容,如果未能解决你的问题,请参考以下文章