gpt4 book ai didi

java - 如何打印序列 1 1,然后是 2 2,3 3,... n ns?

转载 作者:行者123 更新时间:2023-11-29 08:22:14 26 4
gpt4 key购买 nike

编写一个程序打印序列的一部分:

1 2 2 3 3 3 4 4 4 4 5 5 5 5 5 ...

(数字重复多次,直到等于)。

我已经使用了两个 for 循环,但是,我无法让 1 打印一次,2 打印两次,相反,我得到了

1 2 3 4 5 6 1 2 3 4 5 6, etc.

最佳答案

为此你需要两个 for 循环。

for (int i = 0; i <= 5; i++) { // This will loop 5 times
for (int j = 0; j < i; j++) { //This will loop i times
System.out.print(i);
}
}

关于java - 如何打印序列 1 1,然后是 2 2,3 3,... n ns?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56764521/

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