[BOJ/C++] 11654 아스키 코드

mani·2023년 5월 22일
0

baekjoon_step

목록 보기
46/73

데이터는 결국 0과 1일 텐데 문자를 어떻게 만드는 걸까요? 아스키 코드에 대해 알아봅시다.

char은 ??


#include <iostream>
#include <string>

using namespace std;

int main() {
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);

	string input;
	cin >> input;
	cout << (int)input[0];

	return 0;
}
profile
log

0개의 댓글