摘要: 1、循环结构(for,while,do while) 练习一:输出等腰三角形 public static void main(String[] args) { int max = 5; for(int i = 1; i<=5 ; i++) { for (int j = 1; j <= max - i 阅读全文
posted @ 2020-07-23 16:15 Spring_Xian 阅读(182) 评论(0) 推荐(0)