摘要: 输出三角形 class ForForTest{ public static void main(String[] args){ for(int i = 1; i<= 5; i++){ //控制行数 for(int j = 1; j <= i; j++){ //控制列数 System.out.prin 阅读全文
posted @ 2021-01-07 14:23 klvchen 阅读(346) 评论(0) 推荐(0)