我有一个大约 2000 行文本的文本文件,其格式如下:
1 1 Name1 LastN1 58 c 1600 1310.40 6 1 0.22 2164.80 1
2 1 Name2 LastN2 22 d 1700 1523.37 4 1 0.13 897.26 1 3 1 Name3 LastN3
34 c 1600 1195.83616 1 1 0.26 8 . 2000 3 NameX LastNX 46 d 6000 6000.00 1 0 0.00 0.00 1
我想要做的是从文本文件中读取所有这些值并将它们存储到数组中:
int id [2100];
char nombre [2100][30];
char apellido [2100][30];
int edad [2100];
int puesto [2100]; char categoria [2100];
int sueldoI [2100];
float sueldoA [2100];
int antiguedad [2100];
int inscrito [2100];
float aporte [2100];
float ahorro [2100];
int libre [2100];
但是当我试图阅读它们时,我会在控制台中收到很多垃圾
这些是我用来尝试读取并将它们存储到数组中的方法:
//Way number 1
char linea[70];
while(fgets(linea,70,datos) != NULL){
flushall();
sscanf(linea,"%d %d %s %s %d %c %d %f %d %d %f %f %d\n",&id[i],&puesto[i],&nombre[i],&apellido[i],&edad[i],&categoria[i],&sueldoI[i],&sueldoA[i],&antiguedad[i],&inscrito[i],&aporte[i],&ahorro[i],&libre[i]);
i++;
}
// Way number 2 in here i get linea the way it's intended to be but i can't figure
// out a way to split the string into the multiple values i need to store in the arrays
while(fgets(linea,70,datos) != NULL){
printf("%s",linea);
}
这是我以第一种方式得到的输出:
编辑:
我已将数组的大小从 2100 修改为 2000,并且程序似乎表现得更好