可以使用嵌套循環來打印輸出直角三角形,如下所示:
public class PrintTriangle {
public static void main(String[] args) {
int rows = 5; // 三角形的行數
for (int i = 1; i <= rows; i++) {
for (int j = 1; j <= i; j++) {
System.out.print("* ");
}
System.out.println();
}
}
}
運行以上代碼,輸出為:
*
* *
* * *
* * * *
* * * * *
可以根據需要調整rows
的值來控制三角形的大小。