[C언어/C++] 10809: 알파벳 찾기

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <iostream>
#include <string>
 
using namespace std;
 
int main() {
 
    string S;
    string alphabet = “abcdefghijklmnopqrstuvwxyz”;
 
    cin >> S;
 
    for (int i = 0; i < alphabet.length(); i++) {
 
        cout << (int)S.find(alphabet[i]) << ” “;
 
    }
 
    return 0;
}
cs

관련글

제목 작성자 작성일