概述
将十进制的数,转化为16进制数,并输出
#include <bits/stdc++.h>
using namespace std;
string str;
int num;
int main(){
ios::sync_with_stdio(0);
cin>>num;
while(num>0){
int ln = num % 16;
char lc;
if(ln < 10){
lc = '0' + ln;
}
else{
lc = 'A' + ln - 10;
}
str = lc + str;
num /= 16;
}
cout<<str<<endl;
return 0;
}
#include<bits/stdc++.h>
using namespace std;
string str;
int main(){
ios::sync_with_stdio(0);
int a;
int b;
cin>>a>>b;
while(a>0){
int ln = a % b;
char lc;
if(ln<10){
lc = '0' + ln;
}else{
lc = 'A' + ln - 10;
}
str = lc + str;
a/=b;
}
cout<<str<<endl;
return 0;
}
最后
以上就是冷酷银耳汤为你收集整理的将十进制的数,转化为16进制数,并输出的全部内容,希望文章能够帮你解决将十进制的数,转化为16进制数,并输出所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复