Ta上传的资源 (0)

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