PTA 基础编程题目集 7-32 说反话-加强版

#include
#include
using namespace std;
int main(){
int i, arry[200000] = {0,0};
char c;
string str[200000];
for (i =1;; i++)
{
c = getchar();
if (c == ' ')
{
if (arry[i] == 0)
i--;
}
else if (c == '/n')
{
if (arry[i] == 0)
i--;
break;
}
else
{
str[i] += c; arry[i] = 1; i--;
}
}
for (int j = i; j >0; j--)
{
if (j != i)
cout << ' '; cout << str[j]; } }

PTA 基础编程题目集 7-32 说反话-加强版最先出现在Python成神之路

版权声明:
作者:siwei
链接:https://www.techfm.club/p/17646.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>