[填空题] 请在以下程序第一行的下划线处填写适当内容,使程序能正确运行。
______(double,double);
main()
double x,y;
scanf("%1f%1f",&x,&y);
printf("%1fin",max(x,y));
double max(double a,double b)
return(a>b a:b);
正确答案:double max或extern double max

[填空题] 请在以下程序第一行的下划线处填写适当内容,使程序能正确运行。
______(double,double);
main()
double x,y;
scanf("%1f%1f",&x,&y);
printf("%1fin",max(x,y));
double max(double a,double b)
return(a>b a:b);
正确答案:double max或extern double max
上一篇 [填空题] 在窗体上画两个文本框和一个命令按钮,然后在代码窗口中编写如下事件过程: Private Sub Command1
下一篇 [单项选择题] 某人编写了一个能够返回数组a中10个数中最大数的函数过程,代码如下: Function MaxValue(a()As Integer)As Integer Dim max%