今天花了两个小时自己打出来了以哥空心菱形!是有多笨。==!还好有学霸同桌给讲解讲解原理。最后终于告成了。
/*
打印一个!
*
* *
* *
* *
* *
* *
*
请按任意键继续. . .
*/
class ForDemo3
{
public static void main(String[] args)
{
for (int a=0;a<5;a++ )
{
for (int b=a;b<5 ;b++ )
{
System.out.print(" ");
}
for (int b=0;b<=2*a+1 ;b++ )
{
if (b==0 || b==2*a)
{
System.out.print("*");
}
else
{
System.out.print(" ");
}
}
System.out.println();
}
for (int a=5;a>=0;a-- )
{
for (int b=a;b<5 ;b++ )
{
System.out.print(" ");
}
for (int b=0;b<=2*a+1 ;b++ )
{
if (b==0 || b==2*a)
{
System.out.print("*");
}
else
{
System.out.print(" ");
}
}
System.out.println();
}
}
}
|
|