/*
需求:打印一个方框。
*****
* *
* *
*****
*/
class LingXing
{
public static void main(String[] args)
{
for (int x=1;x<5;x++)
{
if (x==1||x==4)
{
for (int y=0;y<5;y++ )
{
System.out.print("*");
}
}
else
{
for (int y=0;y<5;y++)
{
if (y==0||y==4)
{
System.out.print("*");
}
else
System.out.print(" ");
}
}
System.out.println();
}
}
}
|