gpt4 book ai didi

c - 解析 C 中的整数和字符数组

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

我有两个像这样的数组:

char test_results[] = "20 7 1 12 3"
int test[] = {3, 8, 9, 12, 6}

我想一一获取test_results的数字,并将其与test数组的数字进行比较。如果有任何巧合,请打印结果。

我怎样才能做到这一点?谢谢!

最佳答案

这应该就是你所需要的

char  text[] = "20 7 1 12 3";
int test[] = {3, 8, 9, 12, 6};
char *ptr;
int count;

ptr = text;
count = sizeof(test) / sizeof(*test);
while (*ptr != '\0')
{
int value;
int i;

value = strtol(ptr, &ptr, 10);
for (i = 0 ; i < count ; i++)
{
if (value == test[i])
printf("there is a coincidence at the %dth number of the array %d\n", i, value);
}
}

它将输出

there is a coincidence with the 3th number of the array 12
there is a coincidence with the 0th number of the array 3

关于c - 解析 C 中的整数和字符数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27879629/

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