gpt4 book ai didi

c - 需要帮助读取 C 中的 txt 文件

转载 作者:太空宇宙 更新时间:2023-11-04 04:07:50 25 4
gpt4 key购买 nike

我正在用 C 语言开发一个项目,该项目要求我从 txt 文件中读取矩阵值。前两行是行数和列数,其余是实际的矩阵数据。

例如,像这样:

2
2
1.0 2.0
3.0 4.0

我编写的代码出现了一些问题。这是一个片段:

matrix read(char* file){

FILE *fp;
printf("check 1\n");
fp = fopen(file,"r");
printf("file opened\n");

// Make the new matrix
matrix result;
printf("matrix created\n");

int counter = 0;
int i;
int j;
int holdRows;
int holdColumns;


if(counter == 0)
{ // read in rows
fscanf(fp, "%li", holdRows);
printf("here is holdRows: %li\n", holdRows);
counter++;
}
if(counter == 1)
{ // read in columns
fscanf(fp, "%li", holdColumns);
printf("here is holdColumns: %li\n", holdColumns);
counter++;
// Now that I know the dimensions, make the matrix
result = newMatrix(holdRows, holdColumns);
}
// For the rest, read in the values
for(i = 0; i < holdRows; i++)
for(j = 0; j < holdColumns; j++)
fscanf(fp, "%lf", &result->matrixData[i][j]);


fclose(fp);
return result;
}

每当我运行它时,holdRows 和 holdColumns 都不是存储在 txt 文件中的值。例如,我尝试了一个 3X4 矩阵,它显示有一行和三列。

谁能告诉我我做错了什么?

谢谢:)

最佳答案

感谢大家的建议和我自己的一些侦探工作,我解决了我的问题。首先,我输入了错误的文件名(嗯,现在我觉得很傻),其次,我以错误的类型读取数据。

谢谢大家的帮助!

关于c - 需要帮助读取 C 中的 txt 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3695850/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com