kedaOJ#P1529有趣的字母

题目

kedaOJ#P1529有趣的字母

思路

直接模拟,比较复杂的是找到最后一个字符

代码

#include<bits/stdc++.h>
int main() {
    std::vector<char> vowels = {'a', 'e', 'i', 'o', 'u'};
    int n;
    std::cin >> n; 
    int count = 0; 
    for (int i = 0; i < n; ++i) {
        std::string s;
        std::cin >> s; 
        if (std::find(vowels.begin(), vowels.end(), s[0]) != vowels.end() &&
            std::find(vowels.begin(), vowels.end(), s[s.length() - 1]) == vowels.end()) {
            count++; // 如果满足条件,计数器加一
        }
    }
    
    // 输出满足条件的字符串数量
    std::cout << count << std::endl;
    
    return 0;
}
posted @ 2024-06-22 14:26  mcr130102  阅读(6)  评论(0编辑  收藏  举报
请不要抄袭任何人的博客,这是对一名开发者最基本的尊重。