解题思路:
注意事项:
参考代码:
#include <stdio.h>
#include <string.h>
struct s{
char data[10000];
int top;
}n;
void push(char t){
n.top++;
n.data[n.top]=t;
n.data[n.top+1]='\0';
}
void pop(){
if (n.top==-1){ //栈已经空了,就不操作
return;
}
n.top--;
}
void clean(){
n.top=-1;
}
void print(){
puts(n.data);
n.top=-1; //输出完记得清空栈
}
int main (){
char a[10000];
n.top=-1;
while (gets(a)!=NULL){
for (int i=0;a[i]!='\0';i++){
if (a[i]=='#'){
pop();
}else if (a[i]=='@'){
clean();
}else {
push(a[i]);
}
}
print();
}
}
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:668 |
C语言程序设计教程(第三版)课后习题7.2 (C语言代码)浏览:657 |
printf基础练习2 (C语言代码)浏览:322 |
简单的a+b (C语言代码)浏览:564 |
P1001 (C语言代码)浏览:836 |
C语言程序设计教程(第三版)课后习题8.2 (C语言代码)浏览:5275 |
IP判断 (C语言描述,蓝桥杯)浏览:1118 |
Tom数 (C语言代码)浏览:758 |
C语言程序设计教程(第三版)课后习题8.2 (C语言代码)浏览:1108 |
C语言程序设计教程(第三版)课后习题5.4 (C语言代码)浏览:487 |