我是C的新手,已经尝试了一段时间了。
我需要从一个文本文件中读取整数值,该文本文件包含:
G=10
P=5
盖尔:1,2,3,4
价格:4,3,5,6.6
需要选择Gayle和Price值并将它们存储在两个单独的数组中,并将G和P值存储在两个单独的变量中。
到目前为止,我已经做到了:
FILE* file = fopen(abc.txt, "r");
//for gayle values
int g_array[100];
int i=0;
int gayle_val;
while(fscanf("%d", &gayle_val)==1)
{
g_array[i]=gayle_val;
}
//for price values
int p_array[100];
int i=0;
int price_val;
while(fscanf("%d", &price_val)==1)
{
p_array[i]=price_val;
}
//for G and P values
如何组合对4行的搜索,以便逐行完成读取并相应地存储值?
提前谢谢你!
最佳答案
这个问题以前就有人回答过,我敢肯定,在输入问题时,有人向您建议:
关于c - 从C的一行文本文件中逐行读取整数并将其存储在数组中,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16784821/