天天看點

藍橋杯-基礎練習 十進制轉十六進制

#include <iostream>

using namespace std;

int main(){
	int n;
	scanf("%d",&n);
	printf("%X",n);
	return 0;
}