我被困在以下作业问题的输入上,这使得我们编写一个程序从使用数组的文件中读取输入。 http://www.cs.ucf.edu/courses/cop3223/spr2014/section1/c_hw3.pdf
#include <stdio.h>
int main(){
{
int i,degree;
double temperature[2881],current_temp,previous_temp;
FILE *ifp;
ifp=fopen("temp.txt","r");
for(i=0;i <2881; i++)
fscanf(ifp, "%d", &temperature[i]);
}
return 0;
}