문제
URL : https://codeup.kr/problemsetsol.php?psid=23
소스코드
// 입력받은 10진수를 16진수로 출력(2)
// input : 255
// output : FF
#include <iostream>
using namespace std;
int main()
{
int n;
cin >> n;
cout << uppercase << hex << n;
return 0;
}
URL : https://codeup.kr/problemsetsol.php?psid=23
// 입력받은 10진수를 16진수로 출력(2)
// input : 255
// output : FF
#include <iostream>
using namespace std;
int main()
{
int n;
cin >> n;
cout << uppercase << hex << n;
return 0;
}