NETWORK & SEVER FACTORY

개인 공부 기록

Study/code up

[codeup] 1125 : 8진수 16진수 변환

1nfra 2020. 5. 3. 00:47
728x90
1
2
3
4
5
6
7
8
#include <stdio.h>
 
int main()
{
    int a;
    scanf("%d"&a);
    printf("%o %X", a, a);
}
cs
728x90