gpt4 book ai didi

java - 使用随机生成两个单独的输出时遇到问题

转载 作者:行者123 更新时间:2023-12-01 14:46:36 25 4
gpt4 key购买 nike

我正在尝试创建两个单独的 10 列和 10 行数字输出。第一个输出使用数字 4 到 7,第二个输出使用数字 10 到 90(例如 10、20、30 等)。但随机调用这些号码,而不是按特殊顺序。下面是我的Java代码:

import java.util.Random;
public class LabRandom
{
private static final Random rand = new Random();
public static void main(String[] args)
{

int number;

int i = 1;

while (i <= 100)
{
//number = rand.nextInt(4) + 4;
System.out.printf("%-5d", rand.nextInt(4) + 4);

if (i % 10 == 0)
{
System.out.println();
}
i++;
}
System.out.println();

while (i <= 100)
{
//number = rand.nextInt(4) + 4;
System.out.printf("%-5d", rand.nextInt(10 *(80) + 10));

if (i % 10 == 0)
{
System.out.println();
}
i++;
}
}
}

我只是不知道我错过了什么,代码只运行第一个 while 语句,而不运行第二个 while 语句。

最佳答案

您还没有重新初始化i,并且在第一个循环之后,它已经等于101,因此不会进入第二个循环。

正如对您的问题的评论中提到的,for 循环在这里是更合适的构造。

此外,在第二个循环中,语句:

rand.nextInt(10 *(80) + 10)

它似乎不会做你想做的事。您可能需要类似的东西:

rand.nextInt(9) * 10 + 10

关于java - 使用随机生成两个单独的输出时遇到问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15389981/

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