1026.跟奥巴马一起编程(15)

题目描述

美国总统奥巴马不仅呼吁所有人都学习编程,甚至以身作则编写代码,成为美国历史上首位编写计算机代码的总统。2014年底,为庆祝“计算

机科学教育周”正式启动,奥巴马编写了很简单的计算机代码:在屏幕上画一个正方形。现在你也跟他一起画吧!

输入描述:

输入在一行中给出正方形边长N(3<=N<=20)和组成正方形边的某种字符C,间隔一个空格。

输出描述:

输出由给定字符C画出的正方形。但是注意到行间距比列间距大,所以为了让结果看上去更像正方形,我们输出的行数实际上是列数的50%
(四舍五入取整)。

输入例子:

10 a

输出例子:

aaaaaaaaaa
a        a
a        a
a        a
aaaaaaaaaa
#include<iostream>
#include<algorithm>
#include<cmath>
using namespace std;

int main(){
    int n,j;
    char s;
    cin>>n>>s;

    for(int i=0;i<n;i++)
    {
        cout<<s;
    }
    cout<<endl;
    
    for(int i=1;i<round(0.5*n)-1;i++)
    {
        cout<<s;
        j=n-2;
        while(j)
        {
            cout<<' ';
            j--;
        }
        cout<<s<<endl;
    }
    
    for(int i=0;i<n;i++)
    {
        cout<<s;
        
    }
    return 0;
}
发布了276 篇原创文章 · 获赞 30 · 访问量 2万+

猜你喜欢

转载自blog.csdn.net/weixin_42905141/article/details/103970333