新手·小白

打印图形三角形

for(int i=0;i<5;i++) {
			for(int j=i+1;j<5;j++) {
				System.out.print(" ");
				
			}
			for(int j=0 ;j<i*2+1;j++) {
				System.out.print("*");
			}
			System.out.println();

  

posted on 2021-09-20 21:34  新手·小白  阅读(48)  评论(0编辑  收藏  举报

导航