백준 11654 아스키 코드

Console Programming/C# Console 2019. 11. 5. 23:47

 

 

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace _11654
{
    class Program
    {
        static void Main(string[] args)
        {
            string input = Console.ReadLine();

            int ASCIINumber = input[0];

            Console.WriteLine(ASCIINumber);

        }
    }
}

 

'Console Programming > C# Console' 카테고리의 다른 글

백준 1193 분수찾기  (0) 2019.11.06
백준 1157 단어 공부  (0) 2019.11.05
백준 10809 알파벳 찾기  (0) 2019.11.05
백준 10828 스택  (0) 2019.11.04
2019-10-31 Idexer, LinkedList(직접만든) 사용한 인벤토리  (0) 2019.10.31
: