求指定字符在字符串中第一次出现的位置并输出
求指定字符在字符串中第一次出现的位置并输出如:“ThisIsacProgram”,指定字符为“a”时则输出:Resultis:8#include<conio.h>#inc...
求指定字符在字符串中第一次出现的位置并输出
如:“This Is a c Program”,指定字符为“a”时
则输出:Result is: 8
#include <conio.h>
#include <stdio.h>
void nono(int posi);
int fun(char str1[],char ch)
{
int i,pos;
/***********begin***********/
/************end************/
}
main()
{ char str1[80]="This Is a c Program",ch='a';
int posi;
printf("String is: %s\n",str1);
printf("char is: %c\n",ch);
posi=fun(str1,ch);
printf("Result is: %d\n",posi);
nono(posi);
}
void nono(int posi)
{FILE *f;
f=fopen("out1.dat","w");
fprintf(f,"The sum is :%d\n",posi);
fclose(f);
} 展开
如:“This Is a c Program”,指定字符为“a”时
则输出:Result is: 8
#include <conio.h>
#include <stdio.h>
void nono(int posi);
int fun(char str1[],char ch)
{
int i,pos;
/***********begin***********/
/************end************/
}
main()
{ char str1[80]="This Is a c Program",ch='a';
int posi;
printf("String is: %s\n",str1);
printf("char is: %c\n",ch);
posi=fun(str1,ch);
printf("Result is: %d\n",posi);
nono(posi);
}
void nono(int posi)
{FILE *f;
f=fopen("out1.dat","w");
fprintf(f,"The sum is :%d\n",posi);
fclose(f);
} 展开
1个回答
展开全部
#include <conio.h>
#include <stdio.h>
void nono(int posi);
int fun(char str1[],char ch)
{
int i,pos;
/***********begin***********/
for(i=0;i<strlen(str1);i++)
{
if(str1[i] ==ch){
pos=i;
return pos;
}
}
return pos;
/************end************/
}
main()
{ char str1[80]="This Is a c Program",ch='a';
int posi;
printf("String is: %s\n",str1);
printf("char is: %c\n",ch);
posi=fun(str1,ch);
printf("Result is: %d\n",posi);
nono(posi);
}
void nono(int posi)
{FILE *f;
f=fopen("out1.dat","w");
fprintf(f,"The sum is :%d\n",posi);
fclose(f);
}
#include <stdio.h>
void nono(int posi);
int fun(char str1[],char ch)
{
int i,pos;
/***********begin***********/
for(i=0;i<strlen(str1);i++)
{
if(str1[i] ==ch){
pos=i;
return pos;
}
}
return pos;
/************end************/
}
main()
{ char str1[80]="This Is a c Program",ch='a';
int posi;
printf("String is: %s\n",str1);
printf("char is: %c\n",ch);
posi=fun(str1,ch);
printf("Result is: %d\n",posi);
nono(posi);
}
void nono(int posi)
{FILE *f;
f=fopen("out1.dat","w");
fprintf(f,"The sum is :%d\n",posi);
fclose(f);
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询