using System;
class Program {
static void Main(string[] args) {
string ascii = Console.ReadLine();
char[] c = ascii.ToCharArray();
int code = (int)c[0];
Console.WriteLine(code);
}
}
문제 출처
https://www.acmicpc.net/problem/11654
'ComputerScience > Coding Test' 카테고리의 다른 글
백준 2744번: 대소문자 바꾸기 (0) | 2022.11.12 |
---|---|
백준 2743번: 단어 길이 재기 (0) | 2022.11.12 |
백준 7287번: 등록 (0) | 2022.11.12 |
백준 10699번: 오늘 날짜 (0) | 2022.11.11 |
백준 4344번: 평균은 넘겠지 (0) | 2022.11.11 |