아스키코드표 (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 |
'c# > 알고리즘' 카테고리의 다른 글
2135 문자열 압축하기 - 어려워..나중에 (0) | 2020.05.18 |
---|---|
9996번 한국이 그리울 땐 서버에 접속하지 (0) | 2020.05.17 |
9933 민균이의 비밀번호 (0) | 2020.05.15 |
백준 7568 문제 덩치 (0) | 2020.05.13 |
백준 9498번 문제 (0) | 2020.04.06 |