BOJ 27866 문자와 문자열

1 개요[ | ]

BOJ 27866 문자와 문자열


2 C++[ | ]

#include <iostream>
#include <string>
using namespace std;

int main() {
    string S;
    int i;
    cin >> S >> i;
    cout << S[i-1] << '\n';
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}