gpt4 book ai didi

人物比较

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

我正在尝试比较 C 字母中的单词。

我的代码是:

char kel[100];
char check[7];

check is random 8 letter

printf("Please Enter the Word:");
scanf("%s", &kel);



for(int k = 0; k < 7; k++)
{
for(int j = 0; j < size; j++)
{
if(check[i] != kel[i])
{
printf("Different");
}
}
}

我想检查 kel 单词中的随机字母。如果随机字母不包含在 kel 中,我想发出警告。

我怎样才能做到这一点?

谢谢,约翰

最佳答案

也许

#include <string.h>

if(NULL==strpbrk(kel, check)){
printf("not include");
}

关于人物比较,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16979262/

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