摘要: 打印三角形 package com.yanna.struct; public class testDemo01 { public static void main(String[] args) { //打印五行的三角形 for (int i = 1; i <= 5; i++) { for (int 阅读全文