gpt4 book ai didi

c - 如何将文本文件中一行中的整数分配给c中的变量?

转载 作者:行者123 更新时间:2023-11-30 19:02:33 25 4
gpt4 key购买 nike

我有一个文本文件,其中的数字由 fprintf("%d\n",var); 提供现在文件的结构是:1号2号3号4号等我想将数字 1 分配给 var_x,数字 2 分配给 var_y,数字 3 分配给 var_z,然后打印所有变量,然后将数字 4 分配给 var 1 等等,我该怎么做?

我尝试了 sscanf fscanf 等,但它只是打印随机数

这就是我在文件中填写数字的方式:

      fprintf(save_file,"%d\n",xaxis);
fprintf(save_file,"%d\n",yaxis);
fprintf(save_file,"%d\n",getpixel(xaxis,yaxis));

结果文件如下所示:

30
20
0
31
21
15
32
22
0 etc

这就是我现在正在尝试的:

sscanf(open_file,"%d",&read_x);
sscanf(open_file,"%d",&read_y);
sscanf(open_file,"%d",&read_colour);
while(!feof(open_file))
{
printf("%d %d %d",read_x,read_y,read_colour);
sscanf(open_file,"%d",read_x);
sscanf(open_file,"%d",read_y);
sscanf(open_file,"%d",read_colour);

}

预期结果是:

30 20 0
31 21 15
32 22 0

最佳答案

您可以一次扫描所有 3 个值:

#include <stdio.h>

int main() {
FILE* f = fopen("input", "r");

int x, y, z;

while (fscanf(f, "%d %d %d", &x, &y, &z) > 0)
printf("%d %d %d\n", x, y, z);
}

关于c - 如何将文本文件中一行中的整数分配给c中的变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55692313/

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