0

因此,当我编译我的代码时出现此错误(在 '{' token { 之前应为 ',' 或 ';' 我知道在 stackoverflow 上可能有很多这样的错误,但似乎找不到解决方案:

我是 C++ 新手。这是代码:我必须从文本文件(data.txt)中读取数据并显示它:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>

int main(){

FILE *fptr;
char country[5][20];
int population[5];
int landMass[5];
int option;
int i;
int countryOption;
int gdp[5];
int populationDensity[5];
int gdpHead[5];

//open file for reading
fptr = fopen("data.txt", "r");      

//Error checking
if (fptr == NULL) {                
   printf("Unable to open data.txt");
   return(1);
}

//input from user
printf("Hi welome to the country database!");
getchar();
system("cls");
printf("Select a country for information:\n");
printf("1)Canada\n");
printf("2)Italy\n");
printf("3)China\n");
printf("4)USA\n");
printf("5)Russia\n");
printf("6)All\n");
printf("Type in the option you want:");
scanf("%d", &option);
system("cls");

//reads data from data.txt and assigns to variables
for (i = 1; i <= 5; i++) {
    fscanf(fptr, "%s %d %d %d", country[i], &population[i], &landMass[i], &gdp[i]);
    populationDensity[i] = (population[i]/landMass[i]);
    gdpHead[i] = ((gdp[i]*1000000)/population[i]); 

    if (option == 6) {
        printf("Here is info on all the countries in our database:\n");
        printf("Country: %s\n", country[i]);     
        printf("Population: %d\n", population[i]);
        printf("LandMass: %d\n", landMass[i]);
        printf("GDP: %d\n", gdp[i]);
        printf("Population density: %d\n", populationDensity[i]);
        printf("Population density: %d\n\n\n", gdpHead[i]);  
    }
}       

void countrySelection(int countryOption)
{
     printf("Here is some info on the country you chose:\n");
     printf("Country: %s\n", country[countryOption]);     
     printf("Population: %d\n", population[countryOption]);
     printf("LandMass: %d\n", landMass[countryOption]);
     printf("GDP: %d\n", gdp[countryOption]);
     printf("Population density: %d\n", populationDensity[countryOption]);
     printf("Population density: %d\n\n", gdpHead[countryOption]);  
}

//function that prints the info
if (option < 6) {
   countrySelection(option);
}                   

fclose(fptr);
system("pause");
return(0);

}

data.txt 如下所示:

Canada
42000000
9984670
1821000 
Italy
60920000
301230
2013000
China
1351000000
9706961
8227000   
USA
313900000
9826675
15680000
Russia
143000000
17098246
2015000  

任何人都知道问题是什么???

4

1 回答 1

2

void countrySelection(int countryOption)在 main 函数内部定义,这在 c++ 中是不允许的。

将函数移到主函数上方,它应该可以编译。此外,您必须将使用的变量定义countrySelection为全局变量,否则该函数无法访问它们。

于 2013-10-02T00:09:11.923 回答