我想从大于10(11到16)的基数转换。此代码仅转换为基数2-9。我如何转换让我们说299在基地10 = 12B在基地16,14E在基地15,1A0在基地13 ....同样的。我的代码应该在哪里/如何?提前谢谢。
using namespace std;
int main()
{
stack <int> mystack;
int input;
int base;
cout << "Please enter an integer to be converted (base 10): ";
cin >> input;
cout << "Base (2 to 16): ";
cin >> base;
do {
int x = input % base;
mystack.push(x);
} while (input = input / base);
cout << "\nThe base " << base << " is:\n";
while (!mystack.empty())
{
int x = mystack.top();
cout << x << " ";
mystack.pop();
}
cout << "\n\n";
}
答案 0 :(得分:3)
您的转换代码是正确的:mystack
包含正确的数字,顺序相反。
您的打印代码有误:cout << x << " ";
x
为int
将打印数字,对于11及以上的基数,您也需要字母。
一种方法是生成string
个数字,并使用x
作为索引:
std::string digits("0123456789ABCDEF");
...
while (!mystack.empty()) {
int x = mystack.top();
cout << digits[x] << " ";
mystack.pop();
}