我編寫了一個程序,通過使用開關命令將十進制字符串轉換爲十六進制字符,但如果使用char,程序不能正常工作! 沒有開關我不能處理9以上的數字..我希望你明白我的意思,因爲我的語言不太好。將十進制轉換爲十六進制的C++程序
所以這是我的計劃
順便說一句,如果把它int
,而不是char
它做工精細,但它已經成爲11
代替B
#include <iostream>
using namespace std;
int main()
{
int n, i, c=0, t;
char a[50];
cout << "Enter a decmail number :\n";
cin >> n;
t = n;
for (i = 0; t > 0; i++)
{
if (a[i] % 16 > 9)
{
switch(a[i])
{
case 10 : a[i] = 'A'; break;
case 11 : a[i] = 'B'; break;
case 12 : a[i] = 'C'; break;
case 13 : a[i] = 'D'; break;
case 14 : a[i] = 'E'; break;
case 15 : a[i] = 'F'; break;
}
}
else
{
a[i] = t % 16;
}
t = t/16;
}
cout << n << " In hexdecmail = ";
for(c = i - 1; c >= 0; c--)
{
cout << a[c];
}
}
'a [i] = t%16;'==>'a [i] = t%16 +'0';'獲取數字的ascii值。 – mch
既然你把它標記爲C++,你可以使用'std :: hex'操縱器。 –
這已經在這裏解答 - http://stackoverflow.com/questions/3464194/how-can-i-convert-an-integer-to-a-hexadecimal-string-in-c –