gpt4 book ai didi

java - 用户输入数组大小

转载 作者:行者123 更新时间:2023-12-01 11:40:19 24 4
gpt4 key购买 nike

我必须创建 3 个数组,并提示用户输入一个大于 100 的数字,该数字将作为所有 3 个数组的大小。然后我必须生成一定数量的随机数来填充这些范围从 1 到 99 的数组。到目前为止我有这个:

public static void main(String [] args){
Scanner SC = new Scanner(System.in);
System.out.println("Enter size of array:");
int size = SC.newInt();

我对编程相当陌生,我真的只是想学习,但我似乎无法弄清楚这一点。

最佳答案

首先SC.newInt();应该是SC.nextInt();;

您可以这样创建包含 100 个元素的整数数组:

int[] array = new int[100];

您可以通过以下方式生成 1 到 99 之间的随机整数:

Random rand = new Random();  
rand.nextInt((max - min) + 1) + min; // max = 99, min = 1 in your case

关于java - 用户输入数组大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29582475/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com