題目描述 description
將m進製數n轉化成乙個十進位制數 m<=16
題目保證轉換後的十進位制數<=100
輸入描述 input description
共一行n和m
輸出描述 output description
共乙個數
表示m進製的n化成十進位制的數
樣例輸入 sample input
1010 2
樣例輸出 sample output
用乘權累加法即可
c++**:
#include using namespace std;
int num[100];
inline int powerof(int x, int a) //計算x的a次方
int main()
counts++;
}cin >> b;
for (int i = counts - 1,j = 0; i >= 0; i--, j++)
cout << sum;
return 0;
}
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 樣例...
CODE VS 1475 m進製轉十進位制
題目描述 description 將m進製數n轉化成乙個十進位制數 m 16 題目保證轉換後的十進位制數 100 輸入描述 input description 共一行n和m 輸出描述 output description 共乙個數 表示m進製的n化成十進位制的數 樣例輸入 sample input ...