본문 바로가기
Study (etc)/Problem Solving

[BOJ / C++] 10987번 : 모음의 개수

by Haren 2022. 4. 1.

문제

알파벳 소문자로만 이루어진 단어가 주어진다. 이때, 모음(a, e, i, o, u)의 개수를 출력하는 프로그램을 작성하시오.

입력

첫째 줄에 단어가 주어진다. 단어의 길이는 1보다 크거나 같고, 100보다 작거나 같으며, 알파벳 소문자로만 이루어져 있다.

출력

첫째 줄에 모음의 개수를 출력한다.

Solved.ac 레벨

브론즈 II

풀이

#include <bits/stdc++.h>

using namespace std;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(NULL);
    cout.tie(NULL);

    string sVowel = "aeiou";
    string sStr;
    int nCnt = 0;

    cin >> sStr;

    for(int i = 0; i < sStr.length(); i++){
        for(int j = 0; j < sVowel.length(); j++){
            if(sStr[i] == sVowel[j])
                nCnt++;
        }
    }
    cout << nCnt << endl;

    return 0;
}

https://acmicpc.net/problem/10987