所以,我试图让我的程序从文本文件中读入一个结构数组,并且它编译好了,但似乎实际上没有读取值?...我不知道为什么。这是代码的相关部分:
typedef struct Planet
{
char Planet_Name[30];
double Fuel;
double Velocity;
double Height;
double Gravity;
int Maximum_Thrust;
double Difficulty;
}Planet;
//read the Planets from a file
FILE* inputFile = fopen("Planets.txt", "r");
if(inputFile == NULL)
{
perror("Error. File unavailable");
exit(1);
}
for(j=0; j<10; j++)
{
fscanf("%29s %lf %lf %lf %lf %d %lf", SolarSystem[j].Planet_Name,
SolarSystem[j].Fuel, SolarSystem[j].Velocity,
SolarSystem[j].Height, SolarSystem[j].Gravity,
SolarSystem[j].Maximum_Thrust, SolarSystem[j].Difficulty);
}
printf("Please select a planet by entering the corresponding number:
Mercury[0], Venus[1], Earth[2], Moon[3], Mars[4], Jupiter[5], Saturn[6],
Uranus[7], Neptune[8]\n");
scanf("%d",&PlanetNum);
printf("You have chosen %s", SolarSystem[PlanetNum].Planet_Name);
这是txt文件(标题:Planets.txt)
Mercury 120 50 500 12.1 30 2 维纳斯120 50 500 29.1 30 6 地球120 50 500 32.2 30 7 月亮120 15 50 5.3 30 2 火星120 50 500 12.2 30 4 木星120 50 500 81.3 30 10 土星120 50 500 34.3 30 8 天王星120 50 500 28.5 30 5 海王星120 50 500 36.6 30 9 冥王星120 50 500 2.03 30 1
除非它运行最终的printf,它实际上不会打印任何内容,也不会在结构中存储任何数据(当它稍后被称为全零时)。 想法?
答案 0 :(得分:1)
错误在于您的fscanf
功能。您必须在扫描整数和浮点数前提供FILE pointer
(inputFile
此上下文)作为第一个参数和&
运算符(类似于scanf
函数的地址)。
尝试修改后的fscanf
代码: -
fscanf(inputFile,"%s%lf%lf%lf%lf%d%lf",SolarSystem[j].Planet_Name,&SolarSystem[j].Fuel, &SolarSystem[j].Velocity, &SolarSystem[j].Height, &SolarSystem[j].Gravity,&SolarSystem[j].Maximum_Thrust, &SolarSystem[j].Difficulty);