编写一个满足下面要求的程序:创建一个由100个随机选取的整数构成的数组 提示用户输入数组的下标,然后显示对应的元素值,如果指定的下标越界,则显示消息“Out of Bounds”

不要自卑,去提升实力
互联网行业谁技术牛谁是爹
如果文章可以带给你能量,那是最好的事!请相信自己
加油o~

题目描述:

编写一个满足下面要求的程序:

  • 创建一个由100个随机选取的整数构成的数组
  • 提示用户输入数组的下标,然后显示对应的元素值,如果指定的下标越界,则显示消息“Out of Bounds”

代码:

/**
 *作者:魏宝航
 *2020年12月5日,上午8:09
 */
import java.util.*;
import java.util.concurrent.ExecutionException;
public class Main {
     
	public static void main(String[] args){
     
    	Scanner sc=new Scanner(System.in);
    	int[] arr=new int[100];
    	for(int i=0;i<100;i++) {
     
    		arr[i]=(int)(Math.random()*100);
    	}
    	System.out.println("请输入数组的下标:");
    	int n=sc.nextInt();
    	try {
     
			if(n>=100||n<0) {
     
				throw new Exception();
			}
		} catch (Exception e) {
     
			System.out.println("Out of Bounds");
		}
    }
}

你可能感兴趣的:(Java体系,java,python,小程序,git,c++)