编写一个函数int. index (char *str, char ch ),能返回在字符串str
编写一个函数int.index(char*str,charch),能返回在字符串str中第一次出现的字符ch的位置,若找不到则返回-1....
编写一个函数int. index (char *str, char ch ),能返回在字符串str 中第一次出现的字符ch 的位置,若找不到则返回-1.
展开
1个回答
展开全部
int func(char *str,char ch)
{
int nCount = 0;
int i, nLen = strlen(str);
for(i=0; i<nLen; i++)
{
if(str[i] == ch) nCount++;
}
return nCount;
}
{
int nCount = 0;
int i, nLen = strlen(str);
for(i=0; i<nLen; i++)
{
if(str[i] == ch) nCount++;
}
return nCount;
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询