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