编写C语言程序实现功能?
在字符串str中查找某字符ch第一次出现的位置;若字符串str中没有字符ch,则返回-1。例如,输入字符串:Howdoyoudo?输入要查找的字符:o则第一次出现位置为2...
在字符串str中查找某字符ch第一次出现的位置;若字符串str中没有字符ch,则返回-1。
例如,输入字符串:How do you do?
输入要查找的字符:o
则第一次出现位置为2
谢谢回答! 展开
例如,输入字符串:How do you do?
输入要查找的字符:o
则第一次出现位置为2
谢谢回答! 展开
1个回答
展开全部
//参考源码
#include <stdio.h>
#include <string.h>
int main (void)
{
int i,loc,flag=0;
char string[256]={0};
char ch;
printf("Input string: ");
gets(string); //输入字符串
printf("Input char: ");
fflush(stdin); //清空标准输入缓冲区
ch = getchar(); //输入要查找的字符
while(string[i++] != '\0'){
if(ch == string[i]){
loc = i+1;
flag=1;
break;
}
}
if(flag)
printf("%d\n", loc);
else
printf("-1\n");
return 0;
}
测试用例:
F:\c_work>a.exe
Input string: How do you do?
Input char: o
2
F:\c_work>a.exe
Input string: How do you do?
Input char: i
-1
#include <stdio.h>
#include <string.h>
int main (void)
{
int i,loc,flag=0;
char string[256]={0};
char ch;
printf("Input string: ");
gets(string); //输入字符串
printf("Input char: ");
fflush(stdin); //清空标准输入缓冲区
ch = getchar(); //输入要查找的字符
while(string[i++] != '\0'){
if(ch == string[i]){
loc = i+1;
flag=1;
break;
}
}
if(flag)
printf("%d\n", loc);
else
printf("-1\n");
return 0;
}
测试用例:
F:\c_work>a.exe
Input string: How do you do?
Input char: o
2
F:\c_work>a.exe
Input string: How do you do?
Input char: i
-1
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询