gpt4 book ai didi

c - strcmp 在 c 中返回相同的值

转载 作者:行者123 更新时间:2023-11-30 19:17:38 24 4
gpt4 key购买 nike

所以我在这里编写了这个程序,它生成 2 组连接到它们的编号单词,以便稍后我们可以通过组合这些组中的单词(每组单独)来生成单词,每次我们生成这两个单词时,它都会比较它们,如果这些单词是一样的,如果是就结束程序。

strcmp 没有正常工作,我不知道为什么:...C你能帮我吗

我在 Ubuntu 14.04 LTS 上使用 code::blocks当然,这是代码:

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

#define LISTSIZE 256
#define CHAINSIZE 64

int main()
{
char listA[LISTSIZE][CHAINSIZE], listB[LISTSIZE][CHAINSIZE]; //i know malloc would be nice here but it's not really important here
int j = 0, i = 0, n;
printf("Podaj wartość indeksu i: ");
scanf("%d", &i);

for(j = 0 ; j < i; j++)
{
printf("Podaj łańcuch do listy A: "); //enter chain to list A
scanf("%s", &listA[j]);

}
for( j = 0; j < i; j++)
{
printf("Podaj łańcuch do listy B: "); //enter chain to list B
scanf("%s", &listB[j]);
}
printf("Ile chesz podać indeksów? "); //how much indexes do you like to choose
scanf("%d", &n);
for (j = 0; j < n; j++)
{
printf("\nWpisz index", j); //enter index
scanf("%d", &i);
strcat(listA[LISTSIZE - 1], listA[i - 1]);
strcat(listB[LISTSIZE - 1], listB[i - 1]);
printf("\nslowo A: %s", listA[LISTSIZE - 1]);
printf("\nslowo B: %s", listB[LISTSIZE - 1]);
printf("\n %d", strcmp(listA[LISTSIZE - 1], listB[LISTSIZE - 1])); //just to check
// here i have a problem
if(strcmp(listA[LISTSIZE - 1], listB[LISTSIZE - 1]) == 0)
{
printf("\tRozwiązanie zostało znalezione!\n");
return 0;
}
}
printf("Nie znaleziono rozwiązania"); //no solution was found
return 0;
}

最佳答案

listAlistB 应初始化为 strcat(listA[LISTSIZE - 1], listA[i - 1]);strcat(listB[LISTSIZE - 1], listB[i - 1]);

char listA[LISTSIZE][CHAINSIZE]={0}, listB[LISTSIZE][CHAINSIZE]={0};

还有

scanf("%s", listA[j]);
...
scanf("%s", listB[j]);

关于c - strcmp 在 c 中返回相同的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27912095/

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