数据结构例23.将十进制转换成对应进制
/*从键盘上输入一个十进制数n,试编写一个算法,将其转换成对应的p进制输出(p为2.8.16)*/# include <iostream># include <stdlib.h># include <stdio.h>using namespace std;const int maxn = 1000 + 10;typedef struct Stack{ int *base; int *top; int stacks