1036 跟奥巴马一起编程 (15 分)
美国总统奥巴马不仅呼吁所有人都学习编程,甚至以身作则编写代码,成为美国历史上首位编写计算机代码的总统。2014 年底,为庆祝“计算机科学教育周”正式启动,奥巴马编写了很简单的计算机代码:在屏幕上画一个正方形。现在你也跟他一起画吧!
输入在一行中给出正方形边长 N(3≤N≤20)和组成正方形边的某种字符 C,间隔一个空格。
输出由给定字符 C 画出的正方形。但是注意到行间距比列间距大,所以为了让结果看上去更像正方形,我们输出的行数实际上是列数的 50%(四舍五入取整)。
10 a
aaaaaaaaaa
a a
a a
a a
aaaaaaaaaa
又是一题控制格式输出题~注意行数是列数的一半四舍五入,用round函数即可~
// luogu-judger-enable-o2
#include<bits/stdc++.h>
#include<unordered_set>
#define rg register ll
#define inf 2147483647
#define min(a,b) (a<b?a:b)
#define max(a,b) (a>b?a:b)
#define ll long long
#define maxn 300005
#define lb(x) (x&(-x))
const double eps = 1e-6;
using namespace std;
inline ll read()
{
char ch = getchar(); ll s = 0, w = 1;
while (ch < 48 || ch>57) { if (ch == '-')w = -1; ch = getchar(); }
while (ch >= 48 && ch <= 57) { s = (s << 1) + (s << 3) + (ch ^ 48); ch = getchar(); }
return s * w;
}
inline void write(ll x)
{
if (x < 0)putchar('-'), x = -x;
if (x > 9)write(x / 10);
putchar(x % 10 + 48);
}
ll n;
char s;
char p[25][25];
int main()
{
cin>>n>>s;
rg tep;
double k=round(n*1.0/2);
tep=k;
for(rg i=1;i<=tep;i++)
{
if(i==1||i==tep)
{
for(rg j=1;j<=n;j++)p[i][j]=s;
}
else
{
for(rg j=2;j<n;j++)p[i][j]=' ';
p[i][1]=p[i][n]=s;
}
}
for(rg i=1;i<=tep;i++)
{
for(rg j=1;j<=n;j++)
{
cout<<p[i][j];
}
cout<<endl;
}
return 0;
}