1009 说反话
Posted CSU迦叶
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1009 说反话相关的知识,希望对你有一定的参考价值。
笔记:scanf("%s",str)的输入就是以空格还有换行符为标志的,不用怀疑,可以放心在while里面用!=EOF,但是本地的dev不知怎么没有办法中止,在PTA中以下程序是满分。
#include<cstdio>
#include<cmath>
#include<cstring>
#include<algorithm>
using namespace std;
int main(){
char str[80][100];
int i = 0;
while(scanf("%s",str[i])!=EOF){
i++;
}
for(int j=i-1;j>=0;j--){
printf("%s",str[j]);
if(j!=0){
printf(" ");
}
}
return 0;
}
以上是关于1009 说反话的主要内容,如果未能解决你的问题,请参考以下文章