标签:stack cas har end name main else proc ane
咳咳,这个是为了赶量
需要注意的就是输入方式,别的也没什么难点
3 olleh !dlrow m‘I morf .udh I ekil .mca
hello world! I‘m from hdu. I like acm.
这是题意
接下来放代码
#include <iostream>
#include <cstdio>
#include <stack>
using namespace std;
int main(){
int n;
cin >> n;
getchar();
while(n--){
stack<char>cst;
while(1){
int ch=getchar();
if(ch==‘ ‘||ch==‘\n‘){
while(!cst.empty()){
cout << cst.top();
cst.pop();
}
if(ch==‘ ‘)cout << ‘ ‘;
else break;
}
else cst.push(ch);
}
cout << endl;
}
return 0;
}
OK
标签:stack cas har end name main else proc ane
原文地址:https://www.cnblogs.com/sos3210/p/12236034.html