統計元音字母——輸入一個字符串,統計出其中元音字母的數量以及每一個元音字母的數量

#include<iostream> #include<string> #include<ctype.h> using namespace std; int main() { string str; cin >> str; int sumCnt = 0; char l[5] = { 'a','e','i','o','u' }; int count[5] = { 0 }; for (in
相關文章
相關標籤/搜索