题解 | #空心正方形图案#
空心正方形图案
https://www.nowcoder.com/practice/72347ee949dc47399186ee183632f303
#include <stdio.h>
int main() {
int a;
while (scanf("%d", &a) != EOF) { // 注意 while 处理多个 case
// 64 位输出请用 printf("%lld") to
char arr[a][a];
for(int i =0;i<a;i++)
{
for(int j=0;j<a;j++)
{
arr[i][j]=' ';
}
}
for(int i =0;i<a;i++)
{
for(int j=0;j<a;j++)
{
if(i==0||i==a-1||j==0||j==a-1)
{
arr[i][j]='*';
}
}
}
for(int i =0;i<a;i++)
{
for(int j=0;j<a;j++)
{
printf("%c ",arr[i][j]);
}
printf("\n");
}
}
return 0;
}
查看10道真题和解析