gpt4 book ai didi

C - 读取并存储数据文件以供进一步计算

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

我通常使用 R,对 C 的理解有很多困难。我需要读取和存储一个数据文件,如下所示,以便我可以对数据进行计算。这些计算取决于用户输入的信息。这是我尝试读入的数据(在我的代码中称为“Downloads/exchange.dat”),

dollar   1.00
yen 0.0078
franc 0.20
mark 0.68
pound 1.96

这是我目前所处的位置。这只读取第一行数据并返回它,这不是我想要的。我需要阅读整个文件,存储各自货币的汇率,并能够在以后对它们进行计算。

我想我可能需要一个typedef?在程序的后面,我向用户询问“转换自?”之类的信息。和“转换为?”。在这种情况下,他们将输入“马克”、“日元”、“美元”等,我希望将他们的响应与各自的汇率相匹配(使用 string.h 库)。

到目前为止我的代码,读取数据:

#include <stdio.h>

main(int argc, char *argv[])
{
FILE *fpt; // define a pointer to pre-defined structure type FILE
char c;

// open the data file for reading only
if ((fpt = fopen("Downloads/exchange.dat", "r")) == NULL)
printf("\nERROR - Cannot open the designated file\n");

else // read and display each character from the data file
do
putchar(c = getc(fpt));
while (c != '\n');

// close the data file
fclose(fpt);
}

我觉得我需要类似但完全不同的东西来读取和存储整个数据文件。感谢您的帮助。

最佳答案

您需要创建一个数据结构来保存它们,然后创建一个该结构的 vector 来保存读取的每种货币。你应该使用 fscanf功能不仅可以让您免于手动拆分值,还可以为您转换它们。这是我想到的:

/* to store each currency you read */
struct currency {
char name[256];
double value;
};

int main(int argc, char ** argv) {
FILE * fp = fopen("x.dat", "r");
int count = 0, i;
struct currency currencies[30];

/* this will read at most 30 currencies, and stop in case a
* end of file is reached */
while (count < 30 && !feof(fp)) {
/* fscanf reads from fp and returns the amount of conversions it made */
i = fscanf(fp, "%s %lf\n", currencies[count].name, &currencies[count].value);

/* we expect 2 conversions to happen, if anything differs
* this possibly means end of file. */
if (i == 2) {
/* for the fun, print the values */
printf("got %s %lf\n", currencies[count].name, currencies[count].value);
count++;
}
}
return 0;
}

要再次阅读它们,您需要迭代 currencies 数组,直到达到 count 迭代。

因为您已经想用 strcmp 函数匹配这些值,所以读取货币名称,迭代数组直到找到匹配项,然后对这些值执行计算。

这是基本的 C 知识,据我所知你不习惯使用它,我强烈建议你 read a book在其中找到这些答案。

关于C - 读取并存储数据文件以供进一步计算,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24049510/

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