摘要: 1 #include<stdio.h> 2 #include<string.h> 3 #define MAX 110 4 int main() 5 { 6 char stack[MAX]; 7 int top,n,i,flag; 8 char a[MAX]; 9 scanf("%d",&n);10 while(n--)11 {12 top=-1;13 flag=0;14 scanf("%s",a);15 for(i=0;i<strlen(a);i++)16 {1... 阅读全文
posted @ 2012-09-18 20:18 尔滨之夏 阅读(248) 评论(0) 推荐(0) 编辑