Hoon222y

아스키 코드 변환법 본문

코딩/사소한 팁

아스키 코드 변환법

hoon222y 2016. 6. 25. 14:17
1
2
3
4
5
6
7
8
9
#include <iostream>
#include <cstdio>
using namespace std;
 
int main(){
    char a;
    scanf("%c"&a);
    printf("%d" ,a);
}
cs

Comments