填空:通过定义函数,求数组中的最大值 c++程序设计

2024-12-21 08:08:54
推荐回答(4个)
回答1:

完整程序如下,空你就看着填一下,只能说这道题目很坑人,题目有漏洞,下面给你指出来

#include  
using namespace std;
float max(float array[], int n) //数组作为形参可以省略数组长度

int i;  
    float max;   //如果是int 类型,根本不可能输出数组中的最大元素

    max = array[0];

    for(i=0;i if( array[i] > max )
max = array[i];

    return max;
}
void main( )

float fv[4]={5.5,-9.8,6.2,8.66};  
float  t;

    t = max(fv,4);

cout<<"显示数组中的数据"<
for(int i=0;i<4;i++)         
cout<
cout<}

回答2:

对应着添的
#include
float max(float array[], int n) //数组作为形参可以省略数组长度
{ int i; int max;
max=arrry[0];
for(i=0;i if(max return max;
}
void main( )
{ float fv[4]={5.5,-9.8,6.2,8.66}; float t;
t=max(fv,4) ;
cout<<“显示数组中的数据”< for(int i=0;i<4;i++) cout< cout<}

回答3:

asssssssddddaaaaaaaaaaaaaa

回答4:

这个东西要自己慢慢琢磨,不要随便问人滴,靠思考