Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
40780 | 老师 | 元音字母 | C++ | 通过 | 100 | 25 MS | 3160 KB | 317 | 2022-06-04 14:35:49 |
#include<bits/stdc++.h> using namespace std; string yy="aeiouAEIOU"; int check(char c){ int len=yy.size(); for(int i=0;i<len;i++) if(c==yy[i]) return 1; return 0; } int main(){ string s; cin>>s; int len=s.size(),ans=0; for(int i=0;i<len;i++) ans+=check(s[i]); cout<<ans<<endl; return 0; }