参考代码:
#include<iostream> #include<cstring> using namespace std ; int main() { int a,first=0 ; char s[200] ; gets(s) ; for(int i=0;i<=strlen(s)-1;i++) { if(s[i]=='a'||s[i]=='e'||s[i]=='i'||s[i]=='o'||s[i]=='u') { first=1 ; a=i+1 ; break ; } } if(first==1) { cout<<a<<endl ; } else { cout<<first<<endl ; } return 0 ; }
0.0分
0 人评分