10진 정수 입력받아 16진수로 출력하기1(설명) [0031 / 001F] 
Time Limit(Test case) : 1000(ms)Number of users who solved : 4557 Total Tried : 4710
The Champion of this Problem (C++) : kimtaeyoon49 - 0ms / 59byte
My Best Submission (C++) : N/A
[HSJeon 2013]

Background
10진수를 입력받아 16진수(hexadecimal)로 출력해보자.참고
%d(10진수 형태)로 입력받고
%x로 출력하면 16진수(hexadecimal) 소문자로 출력된다.
10진법은 한 자리에 10개(0 1 2 3 4 5 6 7 8 9)의 문자를 사용하고,
16진법은 한 자리에 16개(0 1 2 3 4 5 6 7 8 9 a b c d e f)의 문자를 사용한다.
16진수의 a는 10진수의 10, b는 11, c는 12 ... 와 같다.
(C언어 기초 100제 v1.1)
Input
10진수 1개가 입력된다.Output
16진수(소문자)로 출력한다.IO Example
입력255
출력
ff
Prob Analysis : [Problem Statistics] | [Solution]