#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人点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦