求C语言高手解答,对着答案写也不对啊,总是零分

#include<conio.h>#include<stdio.h>#include<string.h>#include<stdlib.h>intfun(char*str... #include <conio.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
int fun(char *str, char *substr)
{
int i,j=0;
for(i=0;str[i+1]!='\0';i++)
if(str[i]==substr[0]&&str[i+1]==substr[1])
j++;
return j;
}
void main()
{
FILE *wf;
char str[81],substr[3];
int n;
system("CLS");
printf("输入主字符串: ");
gets(str);
printf("输入子字符串: ");
gets(substr);
puts(str);
puts(substr);
n=fun(str,substr);
printf("n=%d\n ",n);
/******************************/
wf=fopen("out.dat","w");
n=fun("asd asasdfg asd as zx67 asd mklo","as");
fprintf(wf,"%d",n);
fclose(wf);
/*****************************/
}
展开
 我来答
听不清啊
高粉答主

2013-09-15 · 说的都是干货,快来关注
知道顶级答主
回答量:7.8万
采纳率:89%
帮助的人:1.9亿
展开全部
这是在主串中查找子串出现的次数。从键盘输入的,结果显示在屏幕上;程序中指定的:
n=fun("asd asasdfg asd as zx67 asd mklo","as");

结果则输出到out.dat中,在主串"asd asasdfg asd as zx67 asd mklo"中,子串"as"出现了6次。输出文件中就一个数字6。
匿名用户
2013-09-15
展开全部
学会自己跟踪调试吧,不然学不会C语言啦
追问
我就是自学为了考二级,后悔死了,太难了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式