1323. Switch text

TAG 水题

 

很水的题,不过题目没看仔细,还wa了好多次。。。(╬▔ ω▔)杯具。。

“If an empty or blank line is found”

搞不清empty跟blank。。。反正就是如果读入的是一行空格,也要忽略掉。。

 

/* source code of submission 443988, Zhongshan University Online Judge System */ #include <cstdio> #include <string.h> char str[1024]; char str2[1024]; int len; void process(char *p) { len=strlen(p); if(len==0) return; int empty; for (empty=0; p[empty]; ++empty) { if ( p[empty]!=' ' ) { break; } } if ( empty==len ) { return; } for (int i=(len+1)/2-1; i>=0; --i) { printf("%c",p[i]); } for (int i=len-1; i>=(len+1)/2; --i) { printf("%c",p[i]); } printf("/n"); } int main(int argc, char *argv[]) { while ( gets(str) && gets(str2) ) { process(str2); process(str); } return 0; }

你可能感兴趣的:(c,System)