exercies.md 1.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
# 一个字符串作为输入返回该字符串中元音字母的数量

请编写一个函数 countVowels,该函数接受一个字符串作为输入,然后返回该字符串中元音字母的数量。

## 输入描述
一个字符串。
 
## 输出描述

 一个数字,表示该字符串中元音字母的数量。

## 输入样例
console.log(countVowels('hello')); // 输出 2
 

## 输出样例
console.log(countVowels('javascript')); // 输出 3
console.log(countVowels('world')); // 输出 1
console.log(countVowels('')); // 输出 0
console.log(countVowels('aeiou')); // 输出 5
console.log(countVowels('AEIOU')); // 输出 5
console.log(countVowels('hjklmnpqrstvwxyz')); // 输出 0
console.log(countVowels('Hello World!')); // 输出 3
console.log(countVowels('To be or not to be, that is the question.')); // 输出13
console.log(countVowels('Brevity is the soul of wit.')); // 输出 8

## 提示
遍历字符串,依次检查每个字符是否是元音字母;
如果是,则将计数器加1;
最后返回计数器的值。