agencies

[CodeUp] 4013 : 진법 변환 본문

Ⅰ. 프로그래밍

[CodeUp] 4013 : 진법 변환

agencies 2024. 3. 28. 08:58

 

문제 접근 방법

- 2진수는 bin 함수를 사용

- 8진수는 oct 함수를 사용

- 16진수는 hex 함수를 사용

num = int(input())

print("2 %s"%(bin(num)[2:]))
print("8 %s"%(oct(num)[2:]))
print("16 %s"%(hex(num)[2:]).upper())