gpt4 book ai didi

c - 在 C 中使用 fgets 和 printf 时,出现 "00“in the screen, do you know why and where "00"来自?

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

我想打印一个文件的每一行,我也想把每一行分成数组中的几个部分,然后用atoi()把字符串变成int,但最终我得到了一个有线的 00,我不知道它来自哪里,有人可以帮忙吗?

#include <stdio.h>
#include <stdlib.h>
#include "tabu.h"
#include <stdbool.h>
#include <string.h>

int main(int argc, const char *argv[]) {

int city[30][30];
FILE *fp = fopen("/Users/wuchangli/Desktop/Cpractice/tabu_6010/tabu_6010_/tabu_6010_/30.in", "r");
if (fp == NULL) {
printf("error");
}
char data[20];
int n = 0;
char *token;
int ct[3];
int mm = 0;
while (fgets(data, 30, fp) != NULL) {
//fflush(stdin);
//fflush(stdout);
//fflush(stdin);
//fflush(stdout);
//printf("\n%s\n", data);
printf("\n%s\n", data);
token = strtok(data, " ");
while (token != NULL && n > 0) {
printf("%s\n", token);
ct[mm] = atoi(token);
printf("%d\n", ct[mm]);
token = strtok(NULL, " ");
mm++;
}
city[ct[0]][ct[1]] = ct[2];
printf("%d", city[ct[0]][ct[1]]);
city[ct[1]][ct[0]] = ct[2];
printf("%d", city[ct[1]][ct[0]]);
n++;
}
//for (int ii = 0; ii < 30; ii++) {
// for (int jj = 0; jj < 30; jj++) {
// printf("%d%d is %d\n", ii, jj, city[ii][jj]);
// }
//}
fclose(fp);

return 0;
}

enter image description here

这是我的文件的链接:enter link description here

最佳答案

你有两个问题:-

在这部分中,您将不断增加 mm++,但当您要从文件中读取另一行时,不会再次初始化 mm。问题是数组绑定(bind)错误。

while(fgets(data, 30, fp)!=NULL){
printf("data is = %s\n", data);
edited: mm=0;
token=strtok(data, " ");
while(token!=NULL)
{
printf("token is = %s\n", token);
ct[mm]=atoi(token);
printf("%d....%d\n",mm,ct[mm]);
token=strtok(NULL, " ");
mm++;
}

第二期是:-

你有一个数组 city[30][30],其中行和列都是 30。在你的代码中,你读取了一个像“30 435”这样的连接字符串的文件,并对每个字符串执行了 strtok() 操作,并在 ct[0] = 30 和 ct[1] = 435 中保存了字符串到 int 的转换。你遇到了问题因为数组绑定(bind)检查。ct[1] 是 435 但您定义了 city[30[30]。

        city[ct[0]][ct[1]]=ct[2];
printf("%d", city[ct[0]][ct[1]]);
city[ct[1]][ct[0]]=ct[2];
printf("%d", city[ct[1]][ct[0]]);

关于c - 在 C 中使用 fgets 和 printf 时,出现 "00“in the screen, do you know why and where "00"来自?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40968982/

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