C语言字符串中查找字母
发布网友
发布时间:2022-04-26 17:24
我来回答
共1个回答
热心网友
时间:2023-10-17 03:32
用一个for循环来遍历字符串中的内容然后比较是否为
aeiou
最后得出结果
以下是运用上面的前辈写的
哈哈
#include
"stdafx.h"
#include"iostream"
using
namespace
std;
int
_tmain(int
argc,
_TCHAR*
argv[])
{
char
str[]="a111a111e111i11o111u";
char
*cpstr=str;
int
sum=0;
while(*cpstr!='\0')
{
switch(*cpstr)
{
case
'a':
case
'e':
case
'i':
case
'o':
case
'u':
sum++;//累加aeiou的个数
default:{
break;}
}
cpstr++;
}
cout<<sum;
return
0;
}