永发信息网

如何定义一个接收三个参数的函数,函数体内,返回三个参数的中的最大

答案:3  悬赏:10  手机版
解决时间 2021-05-05 10:06
  • 提问者网友:浪荡绅士
  • 2021-05-04 18:22
如何定义一个接收三个参数的函数,函数体内,返回三个参数的中的最大
最佳答案
  • 五星知识达人网友:神也偏爱
  • 2021-05-04 19:23
#include
int main()
{
int max(int x,int y,int z);
int a,b,c,sum;
scanf("%d,%d,%d",&a,&b,&c);
sum=max(a,b,c);
printf("max=%d\n",sum);
return 0;
}
int max(int x,int y,int z)
{
int m;
if(x>y) m=x;
else m=y;
if(m>z)m=m;
else m=z;
return(m);
}
问题完美解决,手打,求采纳追答js做也不过是把这个函数放在script里面 你直接var一个function printf改成alert 逻辑都一样追问求指教。追答这个123可以换成你页面documnt.getelementbyid获取的值追问
这个第3题如何解答?
全部回答
  • 1楼网友:动情书生
  • 2021-05-04 20:07



如图
  • 2楼网友:轻雾山林
  • 2021-05-04 19:29
polly@nowthen:~/test$ cat test.c
#include 
static int max(const int, const int, const int);
int main(void)
{
    int a = 3, b = 0, c = -4;
    int m = max(a, b, c);
    
    printf("max of three is %d ", m);
    return 0;
}
static int max(const int a, const int b, const int c)
{
    return a>b?a>c?a:c:b>c?b:c;
}
polly@nowthen:~/test$ gcc -Wall test.c -o liu
polly@nowthen:~/test$ ./liu
max of three is 3追问如果用js 怎么做这道题
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯