gpt4 book ai didi

c - TC 程序使用函数显示 20 个整数值中的最大值

转载 作者:行者123 更新时间:2023-11-30 16:01:48 25 4
gpt4 key购买 nike

int maxval(int *,int x);
int max,arr[20];
void main()
{
printf("Enter the Numbers:");
scanf("%d",&max);
max=maxval(&arr[0],20);


getch();
}

int maxval (int *list,int x)
{
int i,maxnum=*list[0];

for (i=1;i<=x-1;i++)
if (maxnum<*list[i])
maxnum=*list[i];
return maxnum;
}

此代码不起作用......:(

最佳答案

而不是

*list[0]

你只需要

list[0]

*list[i]相同

关于c - TC 程序使用函数显示 20 个整数值中的最大值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6060404/

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