用栈解决的数制转换问题 运用栈的思想解决的。 可以把十进制的数转换成任意进制的数。 数据结构为: typedef struct Stack { int base; int top; int num[stacksize]; }stack;