본문 바로가기
c#/알고리즘

11654 아스키 코드

by Luna_O 2020. 5. 15.

출처 :  http://blog.naver.com/PostView.nhn?blogId=ouwukwfy&logNo=220248439711&parentCategoryNo=16&categoryNo=&viewDate=&isShowPopularPosts=true&from=search

 

아스키코드표 (ASCII)

안녕하세요 갠역시 입니다. 오늘은 아스키코드표와 아스키코드란 무엇인지에 대해 포스팅 할까 합니다. 아...

blog.naver.com

ASCII (American Standard Code for Information Interchange) 라는 약자로써

ANSI 라는 미국 표준 협회에서 제정한 문자 표현 방식을 말한다 함.

 

아스키표에 해당하는 값을 입력받으면 받은 값을 char로 변환시켜서 변수에 담고

담은 변수 값을 숫자형식으로 바꿔서 출력해주면 됨.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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)
        {
            char a = Convert.ToChar(Console.ReadLine());
            int ascii = Convert.ToInt32(a);
            Console.WriteLine(ascii);
        }
    }
}
cs