在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 += "* ";
}
}
}
輸出結果:
*
* *
* * *
* * * *
* * * * *
以上兩種方法都可以根據需要進行調整以打印不同形狀的星星圖案。