반응형
0. 아스키코드 표
출처 : https://www.asciitable.com/
1. Char to Int
01 int형으로 캐스팅
string input = Console.ReadLine();
char asc_c = input[0];
int asc_i = (int)asc_c;
Console.WriteLine(asc_i);
02 Convert.ToInt32 메서드
string input = Console.ReadLine();
char asc_c = input[0];
int asc_i = Convert.ToInt32(asc_c);
Console.WriteLine(asc_i);
2. Int to Char
01 char형으로 캐스팅
string input = Console.ReadLine();
int input_int = int.Parse(input);
char asc_c = (char)input_int;
Console.WriteLine(asc_c);
02 Convert.ToChar 메서드
string input = Console.ReadLine();
int input_int = int.Parse(input);
char asc_c = Convert.ToChar(input_int);
Console.WriteLine(asc_c);
반응형
'코딩테스트 준비 > 자료구조 & 알고리즘' 카테고리의 다른 글
C# - 소수점 자릿수(ToString,String.Format,Round) (0) | 2023.05.13 |
---|---|
C# - 배열 연결, 덧붙이는 방법 (Enumerable.Concat() 사용) (0) | 2023.05.03 |
C# - 중복된 값 제거하기 (0) | 2023.04.18 |
C# - Dictionary(찾기, 추가, 제거, 출력 메서드) (0) | 2023.04.14 |
C# - List (찾기, 추가, 제거, 정렬 메서드) (0) | 2023.04.13 |
댓글