使用 Random 类获取 0 到 99 之间的数字并将它们存储到数组中。使用 for 循环获取每个随机数,将每个随机数存储到数组中,然后打印每个值。
然后使用冒泡排序对数组进行排序,并打印出存储的数组。
这是我的程序
import java.util.Random;
public class Randomness
{
public static void main(String[] args)
{
Random randomNum = new Random();
for (int number = 0; number <= 99; ++number)
{
int num = randomNum.nextInt(100);
System.out.print(num + " ");
int numValues = num;
int [] values = new int[numValues];
boolean swap;
do
{
swap = false;
int temp;
for (int count = 0; count < numValues-1; count++)
if (values[count] > values[count+1])
{
temp = values[count];
values[count] = values[count+1];
values[count+1] = temp;
swap = true;
}
} while (swap);
System.out.print(values[count] + " ");
}
}
}
我得到错误
System.out.print(values[count] + ""); 需要数组,但随机找到。
请帮忙!