标签:
这两天我们刚学到程序流程控制,把FOR循环讲完给我们弄了几道趣味题:
利用双重循环打印 *堆成的三角形
然后思索3个钟头后得出结果:
package jwork;
public class text6 {
public static void main(String[] args) {
for(int x=1;x<=5;x++){
for(int y=x;y<=4;y++){
System.out.print(" ");
}
for(int y=x;y>=1;y--){
System.out.print("*");
}
for(int y=x-1;y>=1;y--){
System.out.print("*"); }
if(x>=3){
System.out.print("*");
}
System.out.println(" ");
}
}
}
怎么都感觉太多了,太长了,新手莫非只能这样了??!!
标签:
原文地址:http://www.cnblogs.com/buoubuhuiku/p/5771347.html