3402:练69.2 单词倒排
练 69.2 单词倒排
/*
NOI / 1.7编程基础之字符串
28单词倒排 2021.12.12 AC
http://noi.openjudge.cn/ch0107/solution/32055785/
*/
#include<bits/stdc++.h>
using namespace std;
int main()
{
string s="",s1="";
while(cin>>s1)
{
s=s1+" "+s;
}
s=s.substr(0,s.length()-1);
cout<<s;
return 0;
}
#include <bits/stdc++.h>
using namespace std;
int main()
{
string s="",s1="";
while(cin>>s1){
s=s1+" "+s;
}
s=s.substr(0,s.length()-1);
cout<<s;
/*
string s,s1[105];
int t=1;
getline(cin,s);
s+=" ";
for(int i=0;i<s.length();i++){
if(s[i]!=' '){
s1[t]+=s[i];
}else{
t++;
}
}
for(int i=t-1;i>1;i--){
cout<<s1[i]<<" ";
}
cout<<s1[1];*/
return 0;
}
#include <bits/stdc++.h>
using namespace std;
int main()
{
string s="",s1="";
while(cin>>s1)
{
s=s1+" "+s;
}
cout<<s;
return 0;
}
《信息学奥赛一本通 编程启蒙C++版》3171-3175(5题)
《信息学奥赛一本通 编程启蒙C++版》3176-3180(5题)
《信息学奥赛一本通 编程启蒙C++版》3176-3180(5题)_3176:【例29.3】 求小数的某一位-CSDN博客
《信息学奥赛一本通 编程启蒙C++版》3181-3185(5题)
《信息学奥赛一本通 编程启蒙C++版》3181-3185(5题)_3182:【例30.3】 按要求计算输出-CSDN博客
《信息学奥赛一本通 编程启蒙C++版》3186-3190(5题)
《信息学奥赛一本通 编程启蒙C++版》3191-3195(5题)
《信息学奥赛一本通 编程启蒙C++版》3196-3200(5题)
《信息学奥赛一本通 编程启蒙C++版》3201-3205(5题)