萧小白


私信TA

用户名:g7xcy

访问量:2778

签 名:

等  级
排  名 3884
经  验 1820
参赛次数 0
文章发表 14
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

解题思路:注意查找,遇到元音字母则输出

注意事项:

参考代码:

#include #include using namespace std;
const int n=1000;
char str[n];
int main(){
    scanf("%s",str);
    for(int i=0;i<strlen(str);i++)
        if(str[i]==97||str[i]==101||str[i]==105||str[i]==111||str[i]==117||str[i]==65||str[i]==69||str[i]==73||str[i]==79||str[i]==85)
            printf("%c",str[i]);
    printf("\n");
    return 0;
}


 

0.0分

0 人评分

  评论区

  • «
  • »