Java打印倒立三角
public class InvertedTriangle {
public static void main(String[] args) {
int rows = 5; // 定义倒立三角形的行数
for (int i = rows; i >= 1; i--) {
// 打印空格
for (int j = 1; j <= rows - i; j++) {
System.out.print(" ");
}
// 打印星号
for (int k = 1; k <= i * 2 - 1; k++) {
System.out.print("*");
}
System.out.println(); // 换行
}
}
}
标签:rows,int,打印,打卡,public,倒立
From: https://www.cnblogs.com/wlxdaydayup/p/17523854.html