數制轉換 OpenJ Bailian 2710

2021-08-26 05:21:49 字數 976 閱讀 8521

求任意兩個不同進製非負整數的轉換(2進製~16進製制),所給整數在long所能表達的範圍之內。

不同進製的表示符號為(0,1,…,9,a,b,…,f)或者(0,1,…,9,a,b,…,f)。

輸入只有一行,包含三個整數a,n,b。a表示其後的n 是a進製整數,b表示欲將a進製整數n轉換成b進製整數。

a,b是十進位制整數,2 =< a,b <= 16。

輸出包含一行,該行有乙個整數為轉換後的b進製數。輸出時字母符號全部用大寫表示,即(0,1,…,9,a,b,…,f)。

15 aab3 7
210306
題的思路是很簡單的,主要是遇到幾個問題

1. 變數一定要初始化再使用,在本地除錯一直沒問題,但是支援是runtime error, 後來發現有個變數沒有初始化

2. ctype.h 庫使用,提供 isdigit 和 toupper() 函式,可以少些很多**

3. 交換陣列時候,可以用雙指標,終止條件是 i >= j;

#include 

#include

#define debug(x) printf("%d\n", x)

const

int n = 1000;

char

out[n];

int main()

num = num * from + bit;

}scanf("%d", &to);

if (num == 0) ;

while (num != 0)

out[len] = '\0';

for (int i =0, j = len-1; i out[i];

out[i] = out[j];

out[j] = swp;

}printf("%s\n", out);

return

0;}

shell 數制轉換

shell 指令碼預設數值是由10 進製數處理,除非這個數字某種特殊的標記法或字首開頭.才可以表示其它進製型別數值。如 以 0 開頭就是 8 進製.以0x 開頭就是16 進製數.使用 base number 這種形式可以表示其它進製.base值 2 64.使用方法 八進位制轉十進位制 charles...

數制的轉換

鏈棧實現數制的轉換 include using namespace std define ok 1 define error 0 define overflow 2 typedef int status define e 8 typedef struct snodesnode,linkstack s...

數制轉換問題

description 在實際問題中經常遇到需要對不同的進製數進行轉換,實現將p進製數轉換成r進製數 2 p,r 16 input 資料報含多行,每行包含三個資料,分別為p,r和待轉換的p進製數d 該數的十進位制表示小於100000000 字母用大寫表示,abcdef,當p為0時,結束輸入。outp...