아스키코드1 백준 11654번 아스키 코드 C++/구현/브론즈5 https://www.acmicpc.net/problem/11654 11654번: 아스키 코드 알파벳 소문자, 대문자, 숫자 0-9중 하나가 주어졌을 때, 주어진 글자의 아스키 코드값을 출력하는 프로그램을 작성하시오. www.acmicpc.net 아스키코드를 출력한다. #include #include using namespace std; int main() { //ios_base::sync_with_stdio(false); ios_base::sync_with_stdio(0); cin.tie(0); char str; cin >> str; cout 2023. 10. 26. 이전 1 다음