| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 522 人关注过本帖
标题:求大神,为什么最后一个计算结果会得不出呢?
只看楼主 加入收藏
校草
Rank: 1
等 级:新手上路
帖 子:50
专家分:7
注 册:2017-3-15
结帖率:75%
收藏
已结贴  问题点数:20 回复次数:2 
求大神,为什么最后一个计算结果会得不出呢?
程序代码:
#include<stdio.h>
#include<stdlib.h>
#include<math.h>

int main()
{
    int a, b, s;
    FILE *fin1, *fin2, *fout;
    fin1 = fopen("F:\\2017C\\test1.txt", "r");
    if ((fin1 = fopen("F:\\2017C\\test1.txt", "r")) == NULL)
    {
        printf("can not to open the file!\n");
        system("pause");
        exit(1);
    }
    fin2 = fopen("F:\\2017C\\test2.txt", "r");
    if ((fin2 = fopen("F:\\2017C\\test2.txt", "r")) == NULL)
    {
        printf("can not to open the file!\n");
        exit(1);
    }
    fout = fopen("F:\\2017C\\test.txt", "w");
    fscanf(fin1, "%d", &a);
    fscanf(fin2, "%d", &b);
    while (!feof(fin1) && !feof(fin2))
    {
        s = a + b;
        fprintf(fout, "%d\n", s);
        fscanf(fin1, "%d", &a);
        fscanf(fin2, "%d", &b);
    }
    fclose(fin1);
    fclose(fin2);
    fclose(fout);
    return 0;
}

12 23 45 56
32 65 45 58
65 54 123 123
//test1.txt
1 1 1 1
2 2 2 2
3 3 3 3
//test2.txt

程序代码:
13
24
46
57
34
67
47
60
68
57
126
//test.txt
为什么最后一位会算不出来呢?
2017-03-15 17:21
grmmylbs
Rank: 14Rank: 14Rank: 14Rank: 14
等 级:贵宾
威 望:54
帖 子:1409
专家分:5845
注 册:2016-2-14
收藏
得分:20 
fscanf后文件指针会自动后移,所以会漏一个数据
程序代码:
#include<stdio.h>
#include<stdlib.h>
#include<math.h>

int main()
{
    int a, b, s;
    FILE *fin1, *fin2, *fout;
    fin1 = fopen("F:\\2017C\\test1.txt", "r");
    if ((fin1 = fopen("F:\\test1.txt", "r")) == NULL)
    {
        printf("can not to open the file!\n");
        system("pause");
        exit(1);
    }
    fin2 = fopen("F:\\2017C\\test2.txt", "r");
    if ((fin2 = fopen("F:\\test2.txt", "r")) == NULL)
    {
        printf("can not to open the file!\n");
        exit(1);
    }
    fout = fopen("F:\\test.txt", "w");    
    while (!feof(fin1) && !feof(fin2))
    {
        fscanf(fin1, "%d", &a);
        fscanf(fin2, "%d", &b);
        s = a + b;
        fprintf(fout, "%d\n", s);        
    }
    fclose(fin1);
    fclose(fin2);
    fclose(fout);
    return 0;
}
2017-03-15 17:37
校草
Rank: 1
等 级:新手上路
帖 子:50
专家分:7
注 册:2017-3-15
收藏
得分:0 
回复 楼主 校草
谢谢
2017-03-15 17:48
快速回复:求大神,为什么最后一个计算结果会得不出呢?
数据加载中...
 
   



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

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