아스키 코드 [브론즈 5]
문제 링크
https://www.acmicpc.net/problem/11654
풀이
character 타입 변수 입력 후 int 형태로 출력한다.
1
2
3
4
5
6
7
8
9
10
11
#include<iostream>
using namespace std;
char ch;
int main(void)
{
cin >> ch;
cout << (int)ch;
}
https://www.acmicpc.net/problem/11654
character 타입 변수 입력 후 int 형태로 출력한다.
1
2
3
4
5
6
7
8
9
10
11
#include<iostream>
using namespace std;
char ch;
int main(void)
{
cin >> ch;
cout << (int)ch;
}
A new version of content is available.