打印各种三角 public class Test { public static void main(String[] args) { /*输出下面的形状 ***** **** *** ** * */ for (int i = 6; i > 0; i--) { for (int j = 0; j < i - 1; j++) { Other 2023-10-25 134 点赞 2 评论 203 浏览