标签:oid font ati div play 分享图片 pre java src
例006:编程输出星号组成的等腰三角形
1 /* 2 ---------- java ---------- 3 * 4 *** 5 ***** 6 ******* 7 ********* 8 9 输出完成 (耗时 0 秒) - 正常终止 10 */ 11 public class Triangle 12 { 13 public static void main(String[] args) 14 { 15 for(int x=0; x<5; x++) 16 { 17 for(int z=0; z<6-x; z++) 18 { 19 System.out.print(" "); 20 } 21 for(int y=0; y<2*x+1; y++) 22 { 23 System.out.print("*"); 24 } 25 System.out.println(); 26 } 27 } 28 }
例007:
标签:oid font ati div play 分享图片 pre java src
原文地址:https://www.cnblogs.com/wuyuwuyueping/p/9067182.html