咳咳,這個是爲了趕量ios
須要注意的就是輸入方式,別的也沒什麼難點spa
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;ip
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;
}ci
OKget