打印各种三角 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 55 点赞 0 评论 83 浏览