PATB1009 说反话(20 分)
Posted hebust
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PATB1009 说反话(20 分)相关的知识,希望对你有一定的参考价值。
#include<cstdio>
#include<cstring>
const int maxn=90;
int main()
{
int num=0;
char ans[90][90];
while(scanf("%s",ans[num])!=EOF)
{
num++;
}
for(int i=num-1;i>=0;i--)
{
printf("%s",ans[i]);
if(i>0) printf(" ");
}
return 0;
}
以上是关于PATB1009 说反话(20 分)的主要内容,如果未能解决你的问题,请参考以下文章