[BOJ] 11654번 아스키 코드 (C++)

Minju Kim·2023년 9월 30일
0
post-thumbnail
post-custom-banner

11654번 링크

10654번 문제

맞았습니다!

코드

#include <iostream>

using namespace std;

int main() {
    ios_base::sync_with_stdio(false);
    cout.tie(NULL);
    cin.tie(NULL);
    
    char c;
    cin >> c;
    int i = c;

    cout << i;
    return 0;

}

profile
이화여자대학교 컴퓨터공학과 22 / 백엔드 개발자(가 되고싶음) / Spring Boot, Flutter, Python, Java, Data structure, etc
post-custom-banner

0개의 댓글