PAT Basic 1036. 跟奥巴马一起编程
1. 题目描述:
美国总统奥巴马不仅呼吁所有人都学习编程,甚至以身作则编写代码,成为美国历史上首位编写计算机代码的总统。2014 年底,为庆祝“计算机科学教育周”正式启动,奥巴马编写了很简单的计算机代码:在屏幕上画一个正方形。现在你也跟他一起画吧!
2. 输入格式:
输入在一行中给出正方形边长 \(N\)(\(3≤N≤20\))和组成正方形边的某种字符 C,间隔一个空格。
3. 输出格式:
输出由给定字符 C 画出的正方形。但是注意到行间距比列间距大,所以为了让结果看上去更像正方形,我们输出的行数实际上是列数的 50%(四舍五入取整)。
4. 输入样例:
10 a
5. 输出样例:
aaaaaaaaaa
a a
a a
a a
aaaaaaaaaa
6. 性能要求:
Code Size Limit
16 KB
Time Limit
400 ms
Memory Limit
64 MB
思路:
除草题,注意整型数据四舍五入的处理。
My Code:
#include <stdio.h>
// first submit testpoint1, 2 wrong answer.
// because the round part's code is wrong.
int main(void)
{
int edgeLen = 0;
char elem = ' ';
int rowLen = 0;
int i=0, j=0;
scanf("%d %c", &edgeLen, &elem);
//rowLen = (edgeLen+0.5) / 2; //round, this cause testpoint1, 2 reject
//rowLen = edgeLen*0.5 + 0.5;
rowLen = (edgeLen+1) / 2;
//printf("rowLen: %d\n", rowLen);
for(i=0; i<rowLen; i++)
{
for(j=0; j<edgeLen; j++)
{
if(i==0 || i==(rowLen-1)) // the up or bottom edge
{
printf("%c", elem);
}
else // the body
{
if(j==0 || j==(edgeLen-1)) // the left or right edge
{
printf("%c", elem);
}
else // the body
{
printf(" ");
}
}
}
printf("\n");
}
return 0;
}
标签:PAT,int,编程,rowLen,正方形,edgeLen,Basic,1036
From: https://www.cnblogs.com/tacticKing/p/17235991.html