题解 | #空心正方形图案#

空心正方形图案

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;
}

全部评论

相关推荐

不愿透露姓名的神秘牛友
07-07 18:05
点赞 评论 收藏
分享
点赞 评论 收藏
分享
小浪_Coding:找硬件测试,也可兼顾软测欧, 简历还可以的 ,注意排版,项目写的有条理一点, 然后个人技能多加点, 润色好简历之后就开始沟通海投了,深圳,东莞这边做硬件相关的公司还不少, 医疗类,仪器类的都可以尝试
点赞 评论 收藏
分享
完美的潜伏者许愿简历...:隐藏信息被你提取出来了,暗示,这就是暗示
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务