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