将十进制的数,转化为16进制数,并输出
将十进制的数,转化为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; }