gpt4 book ai didi

c - C中的多线程

转载 作者:行者123 更新时间:2023-12-04 11:14:42 25 4
gpt4 key购买 nike

<分区>

我正在尝试为以下内容编写代码,但没有成功。有人可以帮忙吗?

创建一个不断循环的线程,提示用户输入一个整数。第二个线程休眠十秒,然后显示:目前输入的最大值; .然后它又回到 sleep 状态并重复。

我非常困惑和困惑。有人可以帮忙

这是目前的代码

pthread_create(&thread1, NULL, &inputfunction, NULL);
pthread_create(&thread2,NULL, &inputfunction, NULL);
pthread_join(thread1,NULL);
// pthread_join(thread2,NULL);
// pthread_mutex_init(&array_lock, NULL);
return 0;
}

void *inputfunction()
{
//int *values= ptr_value;
int i;
int arr[5];
printf("Input values:");
for (i=0;i<5;i++)
scanf("%d",&arr[i]);
sleep(10);

int max=0;
for (i=0;i<5;i++)
{
if (arr[i]>max)
max=arr[i];
}
printf("max=",max);

return NULL;


}

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