gpt4 book ai didi

c - 在字母数字字符串中存储整数值

转载 作者:行者123 更新时间:2023-12-02 01:49:46 25 4
gpt4 key购买 nike

我正在尝试读取具有以下格式的 .txt,以便创建一个大小为 26 的数组(字母表中每个字母 1 个)。

a 5
b 2
c 4
d 10
e 11
f 5
g 7
...

我尝试使用下面的(非工作)代码执行此操作,发送一个空的 vec[26] 作为参数,以及包含每个单词值的 .txt:

void readvalues(FILE*values, int*vec)
{
if (values == NULL)
{
printf("Couldn't open values' file\n");
exit(0);
}

int i=0;

while (i<26)
{
fscanf(values,"%d",&vec[i]);
printf("%d\n",vec[i]);
i++;
}
}

当我检查 printf 输出时,我看到 vec[0] 是正确的,但是这个函数开始在剩余位置存储垃圾。是什么原因造成的,我该如何解决?除了 fgets 之外,还有其他 fscanf 的替代方案吗?

提前谢谢你。

最佳答案

这对您有帮助:

#include <stdio.h>
#include <string.h>
#include <stdlib.h>

void readvalues(FILE *values);

FILE *datafile;
int vec[26];

int main()
{

datafile = fopen ( "my.txt", "r");
readvalues(datafile);


return 0;
}

void readvalues(FILE *values)
{
char tmp[2];
if (values == NULL)
{
printf("Couldn't open values' file\n");
exit(0);
}

int i=0;

while (i<26)
{
if(fscanf(values,"%s %d",tmp,&vec[i]));
printf("%d\n",vec[i]);
i++;
}
}

关于c - 在字母数字字符串中存储整数值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23554637/

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