/*
取自codevs
十進位制轉m進製
題目描述 description
將十進位制數n轉換成m進製數 m<=16 n<=100
輸入描述 input description
共一行 n和m
輸出描述 output description
共乙個數 表示n的m進製
樣例輸入 sample input
樣例1:10 2
樣例2:100 15
樣例輸出 sample output
樣例1:1010
樣例2:6a
資料範圍及提示 data size & hint
用反向取餘法
*/#include
#include
using
namespace
std;
stack
arr;
void m_transform(int n,int m)
else
}int main()
else
m進製轉十進位制
題目描述 description 將m進製數n轉化成乙個十進位制數 m 16 題目保證轉換後的十進位制數 100 輸入描述 input description 共一行n和m 輸出描述 output description 共乙個數 表示m進製的n化成十進位制的數 樣例輸入 sample input ...
1474 十進位制轉m進製
題目描述 description 將十進位制數n轉換成m進製數 m 16 n 100 輸入描述 input description 共一行n和m 輸出描述 output description 共乙個數 表示n的m進製 樣例輸入 sample input 樣例1 10 2 樣例2 100 15 樣例...
CODEVS 1474 十進位制轉m進製
題目描述 description 將十進位制數n轉換成m進製數 m 16 n 100 輸入描述 input description 共一行n和m 輸出描述 output description 共乙個數 表示n的m進製 樣例輸入 sample input 樣例1 10 2 樣例2 100 15 樣例...