#include <iostream>
#include <string>
using namespace std;
string decimalToHexadecimal(int decimal) {
string hexadecimalDigits = "0123456789ABCDEF";
string hexadecimal = "";
while (decimal > 0) {
int remainder = decimal % 16;
hexadecimal = hexadecimalDigits[remainder] + hexadecimal;
decimal /= 16;
}
return hexadecimal;
}
int main() {
int decimal;
cout << "请输入十进制数:";
cin >> decimal;
string hexadecimal = decimalToHexadecimal(decimal);
cout << "十六进制数为:" << hexadecimal << endl;
cout<<"为了防止您直接运行exe文件而看不到结果,请手动关闭程序"<<endl;
while(true)
int i;
return 0;
}
码上行者
- 粉丝: 17
- 资源: 6
最新资源
- 毕设和企业适用springboot智能制造平台类及数字货币管理平台源码+论文+视频.zip
- 毕设和企业适用springboot智能制造平台类及在线教育管理系统源码+论文+视频.zip
- 毕设和企业适用springboot智能制造平台类及在线药品管理平台源码+论文+视频.zip
- 毕设和企业适用springboot智能制造平台类及在线音乐平台源码+论文+视频.zip
- 毕设和企业适用springboot智能制造平台类及资产管理平台源码+论文+视频.zip
- 毕设和企业适用springboot众筹平台类及电影票务系统源码+论文+视频.zip
- 毕设和企业适用springboot智能制造平台类及自动化控制系统源码+论文+视频.zip
- 毕设和企业适用springboot众筹平台类及客户服务智能化平台源码+论文+视频.zip
- 毕设和企业适用springboot众筹平台类及客户管理系统源码+论文+视频.zip
- 毕设和企业适用springboot众筹平台类及企业管理智能化平台源码+论文+视频.zip
- 毕设和企业适用springboot众筹平台类及数据可视化平台源码+论文+视频.zip
- 毕设和企业适用springboot众筹平台类及团队协作平台源码+论文+视频.zip
- 毕设和企业适用springboot众筹平台类及网络安全防护平台源码+论文+视频.zip
- 毕设和企业适用springboot众筹平台类及物流追踪系统源码+论文+视频.zip
- 毕设和企业适用springboot众筹平台类及医疗信息管理平台源码+论文+视频.zip
- 毕设和企业适用springboot众筹平台类及线上文件管理系统源码+论文+视频.zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈