[백준] C# : 아스키 코드 (11654번)

ssu_hyun·2022년 7월 15일
0

Data Structure & Algorithm

목록 보기
30/67
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Baekjoon
{
    class Program
    {
        static void Main(string[] args)
        {
            string s = Console.ReadLine();
            foreach (var c in s)
            {
                Console.WriteLine((int)c);
            }
        }
    }
}

0개의 댓글