본문 바로가기
코딩테스트 준비/백준 C#

백준 C# 11654

by 코딩하는 돼징 2023. 4. 26.
반응형

아스키코드 알아보러 가기

 

C# - 아스키코드(정수를 문자로, 문자를 정수로)

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 = Con

code-piggy.tistory.com


using System;
namespace baek2
{
    class Program
    {
        
        static void Main(string[] args)
        {
            string input = Console.ReadLine();
            char t = input[0];
            Console.WriteLine((int)t);
            
        }
    }
}
반응형

'코딩테스트 준비 > 백준 C#' 카테고리의 다른 글

백준 C# 10809  (0) 2023.04.26
백준 C# 11720  (0) 2023.04.26
백준 C# 9080  (0) 2023.04.26
백준 C# 2743  (0) 2023.04.21
백준 C# 27866  (0) 2023.04.21

댓글