摘要: View Code 1 #include <stdio.h> 2 #include "SqStack.h" 3 #include <stdlib.h> 4 int main() 5 { 6 SqStack s; 7 InitStack(s); 8 int num; 9 int e;10 scanf("%d",&num);11 DtoBcovert(s,num);12 while(!IsEmpty(s))13 {14 Pop(s,e);15 printf("%d",e);16 }17 printf(&qu 阅读全文
posted @ 2012-09-05 23:01 l851654152 阅读(154) 评论(0) 推荐(0) 编辑