黑马程序员技术交流社区
标题:
共享一个菱形的打印
[打印本页]
作者:
YQliang
时间:
2015-5-11 22:30
标题:
共享一个菱形的打印
class w
{
public static void main(String[] args)
{
//w.x();
w.a();
//w.s();
}
public static void a(){
for(int x=0;x<8;x++){
System.out.print("\t");
for(int y=x;y<8;y++){
System.out.print(" ");
}
for(int z=0;z<x;z++){
if(x<2){
System.out.print(" *");
}
else{
if(z>=1&z<(x-1))
System.out.print(" ");
else
System.out.print(" *");
}
}
System.out.println();
}
for(int x=0;x<8;x++){
System.out.print("\t");
for(int y=0;y<=x;y++){
System.out.print(" ");
}
for(int z=x;z<8;z++){
if(z>x&z<7)
System.out.print(" ");
else
System.out.print("* ");
}
System.out.println();
}
}
}
复制代码
作者:
魔蝎座
时间:
2015-5-11 22:44
不错,加油!!!
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2