資料結構實驗之棧與佇列一 進製轉換

2021-08-09 09:01:33 字數 727 閱讀 9152

time limit: 1000ms

memory limit: 65536kb

submit

statistic

problem description

輸入乙個十進位製非負整數,將其轉換成對應的 r (2 <= r <= 9) 進製數,並輸出。

input

第一行輸入需要轉換的十進位製非負整數;

第二行輸入 r。

output

輸出轉換所得的 r 進製數。

example input

1279

8

example output

2377

#include

#include

using namespace std;

#define addsize 50

#define size 100

struct node

;void inistack(node &s)

int gettop(node &s)

else

} void push(node &s,int e)

*s.top++=e;

}int pop(node &s,int e)

int main()

while(gettop(s))

cout<}else

return 0;

}

資料結構實驗之棧與佇列一 進製轉換

problem description 輸入乙個十進位製非負整數,將其轉換成對應的 r 2 r 9 進製數,並輸出。input 第一行輸入需要轉換的十進位製非負整數 第二行輸入 r。output 輸出轉換所得的 r 進製數。example input 1279 8 example output 23...

資料結構實驗之棧與佇列一 進製轉換

problem description 輸入乙個十進位製非負整數,將其轉換成對應的 r 2 r 9 進製數,並輸出。input 第一行輸入需要轉換的十進位製非負整數 第二行輸入 r。output 輸出轉換所得的 r 進製數。example input 1279 8 example output 23...

資料結構實驗之棧與佇列一 進製轉換

資料結構實驗之棧與佇列一 進製轉換 time limit 1000 ms memory limit 65536 kib problem description 輸入乙個十進位製非負整數,將其轉換成對應的 r 2 r 9 進製數,並輸出。input 第一行輸入需要轉換的十進位製非負整數 第二行輸入 r...