設計算法,把十進制整數轉換爲二至九進制之間的任一進制輸出。

設計算法,把十進制整數轉換爲二至九進制之間的任一進制輸出。 #include<iostream> using namespace std; typedef struct Node{ int data; struct Node *next; }LinkStack; LinkStack *Push(LinkStack *LS,int x){ LinkStack *p; p=(LinkStack
相關文章
相關標籤/搜索