[PAT解题报告] Hello World for U
很有意思的简单题——可以说也是模拟题吧,给定字符串按照指定格式输出。主要还是要细致,关键是计算两列之间空格的个数——如果总长度是n,空格个数大体就是(n
+ 4) / 3,但是如果n和这个数的差是奇数,还要多加一个空格,这样才能均分。然后就是直接循环输出了。
代码:
#include <cstdio> #include <cstring> #include <string> using namespace std; char s[99]; int main() { scanf("%s",s); int n = strlen(s), n2 = (n + 4) / 3, n1; if ((n - n2) & 1) { ++n2; } n1 = (n - n2) >> 1; int from = 0, to = n - 1; for (int i = 0; i < n1; ++i, ++from, --to) { putchar(s[i]); for (int j = 2; j < n2; ++j) { putchar(' '); } printf("%c\n",s[n - 1 - i]); } for (; from <= to; ++from) { putchar(s[from]); } puts(""); return 0; }原题链接: http://www.patest.cn/contests/pat-a-practise/1031