2 回答
TA贡献1934条经验 获得超2个赞
这是一个工作脚本:
Scanner sc = new Scanner (System.in);
String[] lines = {" *", " **", " ***", " ****", " *****"};
int input = Integer.parseInt(sc.nextLine());
for (int i=0; i < lines.length; ++i) {
for (int j=0; j < input; ++j) {
System.out.print(lines[i]);
System.out.print(" ");
}
System.out.println();
}
我们可以在这里使用嵌套循环,其中外循环迭代三角形的线,内循环控制每行打印多少个三角形。对于输入 3,生成:
* * *
** ** **
*** *** ***
**** **** ****
***** ***** *****
TA贡献1842条经验 获得超21个赞
您现在已经非常接近可行的解决方案,而不是制作嵌入新行的解决方案barricade;String使其成为一个数组。我也更喜欢sc.nextInt()将三个调用硬编码到一个数组Integer.parseInt(),并且我将进一步创建num1一个num3数组。喜欢,
int[] nums = { 2, 1, 3 }; // { sc.nextInt(), sc.nextInt(), sc.nextInt() };
String[] barricade = {
" *",
" **",
" ***",
" ****",
" *****" };
for (int num : nums) {
for (String line : barricade) {
for (int j = 0; j < num; j++) {
System.out.print(line);
}
System.out.println();
}
System.out.println();
}
添加回答
举报