본문 바로가기
백준

[10809] 알파벳 찾기

by Jcoder 2018. 7. 14.


#include <iostream>
#include <string>
using namespace std;
int main()
{
char s[101];
cin >> s;
for (char c = 'a'; c <= 'z'; c++)
{
int i = 0;
int res = -1;
while (s[i] != '\0')
{
if (s[i] == c)
{
res = i;
break;
}
i++;
}
cout << res << " ";
}
return 0;
}


'백준' 카테고리의 다른 글

[1316] 그룹 단어 체커  (0) 2018.07.14
[1157] 단어 공부  (0) 2018.07.14
[11654] 아스키 코드  (0) 2018.07.14
[2448] 별찍기 - 11  (0) 2018.07.14
[2920] 음계  (0) 2018.07.14