具体代码如下:
class Demo2
{
public static void main(String[] args)
{
for(int x=1;x<=5;x++)
{
for(int y=1;y<=5;y++)
{
if(x==1||x==5)
{
System.out.print("*"+" ");
} else {
if(y==1|y==5)
{
System.out.print("*"+" ");
}
else
{
System.out.print(" "+" ");
}
}
}
System.out.println();
}
}
}
第一个for循环是行数,第二个是列数,让第一个判断第1行 和第5行的时候打满,然后判断中间三行,只打第一个和第五个就行了 |