将一个非负的十进制数N转换成d进制,也就是数制转换,请写出该算法。
void conversion(int N,int d) { SeqStack S; InitStack(&S); while(N){ Push(&S,N%d); N=N/d; } while(!StackEmpty(&S)){ i=Pop(&S); printf("%d",i) } }
将一个非负的十进制数N转换成d进制,也就是数制转换,请写出该算法。
void conversion(int N,int d) { SeqStack S; InitStack(&S); while(N){ Push(&S,N%d); N=N/d; } while(!StackEmpty(&S)){ i=Pop(&S); printf("%d",i) } }