time limit: 1000ms
memory limit: 65536kb
submit
statistic
problem description
輸入乙個十進位製非負整數,將其轉換成對應的 r (2 <= r <= 9) 進製數,並輸出。
input
第一行輸入需要轉換的十進位製非負整數;
第二行輸入 r。
output
輸出轉換所得的 r 進製數。
example input
12798
example output
2377
hint
author
01
#include
02
#include
03
using
namespace
std;
04
int
main()
05
17
while
(!p.empty())
18
22
cout<
23return
0;
24
}
time limit: 1000ms
memory limit: 65536kb
submit
statistic
problem description
輸入乙個十進位製非負整數,將其轉換成對應的 r (2 <= r <= 9) 進製數,並輸出。
input
第一行輸入需要轉換的十進位製非負整數;
第二行輸入 r。
output
輸出轉換所得的 r 進製數。
example input
12798
example output
2377
hint
author
資料結構實驗之棧一 進製轉換
題目描述 輸入乙個十進位制整數,將其轉換成對應的r 2 r 9 進製數,並輸出。輸入 第一行輸入需要轉換的十進位制數 第二行輸入r。輸出 輸出轉換所得的r進製數。示例輸入 1279 8 題解 這道題我用兩種方式來實現的,乙個是陣列,另乙個是棧的模板。求相應的進製數首先到用迴圈來做,什麼時候迴圈結束這...
資料結構實驗之棧一 進製轉換
time limit 1000ms memory limit 65536k 有疑問?點這裡 輸入乙個十進位制整數,將其轉換成對應的r 2 r 9 進製數,並輸出。第一行輸入需要轉換的十進位制數 第二行輸入r。輸出轉換所得的r進製數。1279 8 2377 示例程式 view plain copy p...
資料結構實驗之棧一 進製轉換
time limit 1000ms memory limit 65536k 輸入乙個十進位制整數,將其轉換成對應的r 2 r 9 進製數,並輸出。第一行輸入需要轉換的十進位制數 第二行輸入r。輸出轉換所得的r進製數。1279 8 2377 include include define stackma...