문제
URL : https://codeup.kr/problemsetsol.php?psid=23
소스코드
// 영문자를 입력 받아 아스키코드값 출력
// input : A
// output : 65
#include <iostream>
using namespace std;
int main()
{
char c;
cin >> c;
cout << (int)c;
return 0;
}
URL : https://codeup.kr/problemsetsol.php?psid=23
// 영문자를 입력 받아 아스키코드값 출력
// input : A
// output : 65
#include <iostream>
using namespace std;
int main()
{
char c;
cin >> c;
cout << (int)c;
return 0;
}