亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

java怎么打印星星圖案

小億
230
2023-09-28 13:56:39
欄目: 編程語言

在Java中打印星星圖案可以使用循環結構來實現。以下是兩種常見的打印星星圖案的方法:

方法一:使用嵌套循環

public class Main {
public static void main(String[] args) {
int rows = 5; // 設置行數
for (int i = 0; i < rows; i++) {
for (int j = 0; j <= i; j++) {
System.out.print("* ");
}
System.out.println();
}
}
}

輸出結果:

*
* *
* * *
* * * *
* * * * *

方法二:使用字符串拼接

public class Main {
public static void main(String[] args) {
int rows = 5; // 設置行數
String star = "* ";
for (int i = 0; i < rows; i++) {
System.out.println(star);
star += "* ";
}
}
}

輸出結果:

*
* *
* * *
* * * *
* * * * *

以上兩種方法都可以根據需要進行調整以打印不同形狀的星星圖案。

0
确山县| 漳浦县| 东安县| 尖扎县| 姚安县| 郸城县| 昌宁县| 北票市| 洛扎县| 南宫市| 东方市| 平阳县| 平远县| 岑巩县| 吴堡县| 龙海市| 武陟县| 新丰县| 临颍县| 沈丘县| 大田县| 济阳县| 庆元县| 卢湾区| 襄汾县| 澄城县| 偃师市| 凤城市| 正宁县| 江永县| 开鲁县| 衡东县| 牙克石市| 德昌县| 大田县| 彭水| 罗定市| 敖汉旗| 顺昌县| 柳江县| 渭南市|