本帖最后由 来男. 于 2014-4-27 20:26 编辑
(1)int z=5;
for(int x=0;x<5;x++){
for(int y=0;y<z;y++){
System.out.print("*");
}
System.out.println();
z--;
}
(2)int z=0;
for(int x=0;x<5;x++){
for(int y=z;y<5;y++){
System.out.print("*");
}
System.out.println();
z++;
}
(3)for(int x=0;x<5;x++){
for(int y=x;y<5;y++){
System.out.print("*");
}
System.out.println();
}
(4)for(int x=5;x>0;x--){
for(int y=0;y<x;y++){
System.out.print("*");
}
System.out.println();
}
想问一下:上述四种均能打印
*****
****
***
**
*
但为啥毕老师唯独推荐(3)呢?它优于其他的点是什么?
能详细说下嘛?
|
|