7.编写一个程序,它每次读取一个单词,直到用户只输入q。然后,
该程序指出有多少个单词以元音打头,有多少个单词以辅音打头,还有多少个单词不属于这两类。
为此,方法之一是,使用isalpha()来区分以字母和其他字符打头的单词,
然后对于通过了isalpha()测试的单词,
使用if或 switch 语句来确定哪些以元音打头。
该程序的运行情况如下:
Enter words(g to quit) :
**The 12 awesome oxen ambled
quietly across 15 meters of lawn.q * *
5 words beginning with vowels
4 words beginning with consonants
2 others
说明:这里有一个难点,就是大家一定要知道元音字母,辅音字母,和其他类型的符号的输入
#pragma region 第五章练习7
/*
*/
//元音字母:a,e,i,o,u.包括大写的
#if 1
#include