c - 以特殊方式从文件中读取 float

标签 c file-io floating-point scanf

我试图从二维数组中的文件中读取数字,我必须跳过第一行和第一列,其余的都必须保存在一个数组中,我试过使用 sscanf、fscanf 甚至 strtok () 但惨遭失败。所以请帮我解决这个问题。 提前致谢,

Link to the file

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(int argc, char* argv[]){
FILE *f=fopen("Monthly_Rainfall_Himachal.txt","r");
float data[12][12];
int i,j;
char newLine[1000];
fgets(newLine,1000,f);
char* item,waste;
i=0;
while(1)//read file line by line
{
    fscanf(f, "%s %f %f %f %f %f %f %f %f %f %f %f %f ", waste, &data[i][0], &data[i][1], &data[i][2], &data[i][3], &data[i][4], &data[i][5], &data[i][6], &data[i][7], &data[i][8], &data[i][9], &data[i][10], &data[i][11]);
    i++;
    if(feof(f))break;
}
fclose(f);

for(i=0 ;i<12 ;i++){
    for(j=0 ;j<12 ;j++){
        printf("%.1f\t",data[i][j]);
    }
    printf("\n");
}
return 0;
}

最佳答案

问题:

  1. 您不检查 fopen 是否成功打开文件并盲目地假设它打开了。

    检查它的返回值:

    if(f == NULL)
    {
        fputs("fopen failed! Exiting...\n", stderr);
        return EXIT_FAILURE;
    }
    
  2. 您可以使用 scanf 读取并丢弃第一行,而不是读取第一行并存储:

    scanf("%*[^\r\n]"); /* Discard everything until a \r or \n */
    scanf("%*c");       /* Discard the \r or \n as well */
    
    /* You might wanna use the following instead of `scanf("%*c")` 
       if there would be more than one \r or \n 
    
    int c;
    while((c = getchar()) != '\n' && c != '\r' && c != EOF);
    
       But note that the next fscanf first uses a `%s` which
       discards leading whitespace characters already. So, the
       `scanf("%*c");` or the while `getchar` loop is optional 
    */
    
  3. 你有一个未使用的字符指针 item 和一个字符变量 waste。这两者都是不必要的。因此,删除它们。
  4. 在很长的 fscanf 行中,您首先尝试将一个字符串扫描到一个调用未定义行为的字符变量中,然后事情变得一团糟。您还需要检查它的返回值以查看它是否成功。

    fscanf 行替换为以下内容:

    if(fscanf(f, "%*s") == EOF)
    {
        fputs("End Of File! Exiting...\n", stderr);
        return EXIT_SUCCESS;
    }
    for(j = 0; j < 12; j++)
    {
        if(fscanf(f, "%f", &data[i][j]) != 1)
        {
            fputs("End Of File or bad input! Exiting...\n", stderr);
            return EXIT_SUCCESS;
        }
    }
    
  5. 您假定输入最多为 12 行,但如果它包含超过 12 行,您的代码将由于数组溢出而调用未定义的行为。

    检查 i 的值以及 feof 以确保它不超过 11:

    if(i >= 12 || feof(f))
    

注意:我没有测试以上任何代码。如果我犯了错误,请纠正我。谢谢!

关于c - 以特殊方式从文件中读取 float ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42737251/

相关文章:

c - 带填充的 printf 格式 float

ruby - 如何用尾随零舍入一个非常小的 float ?

c# - Unity C# 将float转换为字节数组并用node js读取

c - 读取 float 的 block I/O 问题 - C

c - 嵌入式 C 编程 - 瑞萨电子

c - 为什么还没有分配空间就可以读写内存?

c - 根据内存位置的特定值定义值

python - 在Python中高效解析大文本文件?

c++ - 从文件中填充结构

c - 按顺序向 EEPROM 写入和读取数据