#include<iostream> #include<stack> #include<string> using namespace std; int main() { string str; stack<char>s; while(getline(cin,str)) { for(int i=0;i<str.size();i++) { if(str[i]=='#') s.pop(); else if(str[i]=='@') { while(!s.empty()) { s.pop(); } } else s.push(str[i]); } char a[1000]; int i=0; while(!s.empty()) { a[i]=s.top(); s.pop(); i++; } for(int j=i-1;j>=0;j--) { cout<<a[j]; } cout<<endl; } return 0; }
0.0分
1 人评分
数字整除 (C++代码)——(22行代码)真的只需要两个变量就够了浏览:1867 |
Minesweeper (C语言代码)浏览:856 |
去掉双斜杠注释 (C语言代码)浏览:1963 |
C二级辅导-计负均正 (C语言代码)浏览:643 |
点我有惊喜!你懂得!浏览:1462 |
小明A+B (C语言代码)浏览:1317 |
WU-蓝桥杯算法提高VIP-Quadratic Equation (C++代码)浏览:1808 |
WU-判定字符位置 (C++代码)浏览:1471 |
printf基础练习2 (C语言代码)浏览:690 |
C语言程序设计教程(第三版)课后习题6.1 (C语言代码)浏览:769 |