| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 355 人关注过本帖
标题:一道二级考试的难题,求解函数部分的意思
只看楼主 加入收藏
空心人
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2009-7-26
收藏
 问题点数:0 回复次数:0 
一道二级考试的难题,求解函数部分的意思
#include<stdio.h>
#include<string.h>


int Replace_string(char line[],char str1[],char str2[])
{
    int i=0,j,loc;
    char temp[80];
    while(i<=strlen(line)-strlen(str2))
    {
        j=0;
        loc=i;
        while(str1[j]==line[loc]&&str1[j]!='\0')
        {
            loc++;
            j++;
        }
        if(str1[j]=='\0')
        {
            strcpy(temp,&line[loc]);
            strcpy(&line[i],str2);
            i+=strlen(str2);
            strcpy(&line[i],temp);
            return 1;
        }
        else i++;
    }
    return 0;
}



main()
{
    FILE *fp;
    char string[100]="My EXAM_number is 0112404321";
    char number[11]="0112404321",num[11];
    fp=fopen("myf2.out","w");
    if(fp==NULL)
    {
        printf("Can not open the file!\n");
        exit(0);
    }
    fprintf(fp,"%s\n",string);
    gets(num);
    Replace_string(string,number,num);
    fprintf(fp,"%s\n",string);
    fprintf(fp,"\nmy exam number is:%s","0112400123");
    fclose(fp);
}


[[it] 本帖最后由 空心人 于 2009-8-4 19:25 编辑 [/it]]
搜索更多相关主题的帖子: 我的 编程 问题 
2009-07-26 23:12
快速回复:一道二级考试的难题,求解函数部分的意思
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.024152 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved