#include<stdlib.h>
#include<stdio.h>
main()
{
FILE *fp;
float z;
fp=fopen("Flight.txt","r");
if(!fp)
printf("找不到\n");
fscanf(fp,"%f",&z);
}运行后就是 runtime error!
请各位高手帮帮忙,急需。。