想请问大神如何将调用多个函数,第一个调用用来读取一个txt文档的数据,第二个调用的用来将这些数据进行一些运算,第三个调用的用来将运算好的数据写入另一个txt文档
我现在可以直接写可以运行出来,但要调用函数我就不是很会啊 求教!!#include <stdio.h>
#include <stdlib.h>
int main(void)
{
FILE *fptr1;
fptr1 = fopen ("Input1.txt","r");
if (fptr1==NULL){
printf("Cannot open the file!!");
}
int m,b;
while(!feof(fptr1)){
fscanf(fptr1,"m=%d b=%d\n",&m,&b);
}
fclose(fptr1);
printf("The data is written to the end!!");
system("PAUSE");
fptr1 = fopen ("Output1.txt","w");
{
fprintf(fptr1,"filename:Output1\n\n");
fprintf(fptr1,"Linear equation:y=mx+b,which m=%d,b=%d,Output1\n",m,b);
fprintf(fptr1,"-------------------------------------------------\n\n");
fprintf(fptr1,"The coordinates of the linear equation :");
int i,j;
for(j=19;j>=0;j--){
for(i=0;i<20;i++){
if(j==m*i+b){
fprintf(fptr1,"(%d,%d)",i,j);
}
}}
fprintf(fptr1,"\n\n\n\n");
for(j=19;j>=0;j--){
for(i=0;i<20;i++){
if(j==m*i+b){
fprintf(fptr1,"*");
}
else{
fprintf(fptr1,"_");
}
}
fprintf(fptr1,"\n");
}}}
[此贴子已经被作者于2018-1-6 15:22编辑过]