CodeFoeces-938A

题目

原题链接:A. Word Correction

题意

给出一个字串s,若存在连续的元音字母,则删除后面的字母。输出处理后的s。

代码

#include
using namespace std;
string s;
bool check(char t){
    if(t=='a' || t=='e' || t=='i' || t=='o' || t=='u' || t=='y') return 1;
    return 0;
}
int main() {
    int n;
    cin>>n>>s;
    for(int i=0;i

你可能感兴趣的:(CodeFoeces-938A)