标签:|| from world 用例 text class har ever clu
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1062
题目描述:
伊格纳修斯喜欢用相反的方式写词。给定由Ignatius编写的单行文本,您应该反转所有单词,然后输出它们。
1 #include <bits/stdc++.h> 2 using namespace std; 3 int main(){ 4 int n; 5 char ch; 6 scanf("%d",&n); 7 getchar(); 8 while(n--){ 9 stack<char> s; 10 while(true){ 11 ch=getchar(); 12 if(ch==‘\n‘||ch==‘ ‘||ch==EOF){ 13 while(!s.empty()){ 14 printf("%c",s.top()); 15 s.pop(); 16 } 17 if(ch==‘\n‘||ch==EOF) break; 18 printf(" "); 19 } 20 else s.push(ch); 21 } 22 printf("\n"); 23 } 24 return 0; 25 }
hdu1062 Text Reverse(文字反转stack)
标签:|| from world 用例 text class har ever clu
原文地址:https://www.cnblogs.com/ZKYAAA/p/12637875.html