摘要: 打印三角形 package com.luo.struct; public class Demo1 { public static void main(String[] args) { //打印三角形 5行 for (int i = 1; i <= 5; i++) { for (int j = 5; 阅读全文
posted @ 2021-05-12 10:21 南雄 阅读(37) 评论(0) 推荐(0)