为了账号安全,请及时绑定邮箱和手机立即绑定

通过C++实现逐格点运算

标签:
C
#include<stdio.h>
#include<stdlib.h>
#include<math.h>

int main()
{
    int a, b, s,cout=0;
    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");
    while (!feof(fin1) && !feof(fin2))
    {
        fscanf(fin1, "%d", &a);
        fscanf(fin2, "%d", &b);
        s = a + b;
        cout++;
        if (cout%4==0) fprintf(fout, "%d\n", s);
        else fprintf(fout, "%d\t", s);
    }

    fclose(fin1);
    fclose(fin2);
    fclose(fout);
    return 0;
}
12 23 45 56
32 65 45 58
65 54 123 123
//test1
1 1 1 1
2 2 2 2
3 3 3 3
//test2
13  24  46  57
34  67  47  60
68  57  126 126
//test
点击查看更多内容
1人点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消