函式題 4 5 求自定型別元素的最大值

2021-07-26 15:02:04 字數 668 閱讀 1141

4-5 求自定型別元素的最大值 

本題要求實現乙個函式,求n個集合元素s中的最大值,其中集合元素的型別為自定義的elementtype

elementtype max( elementtype s, int n );
其中給定集合元素存放在陣列s中,正整數n是陣列元素個數。該函式須返回ns元素中的最大值,其值也必須是elementtype型別。

#include #define maxn 10

typedef float elementtype;

elementtype max( elementtype s, int n );

int main ()

/* 你的**將被嵌在這裡 */

3

12.3 34 -5

34.00
elementtype max( elementtype s, int n )

return max;

}

4 5 求自定型別元素的最大值

本題要求實現乙個函式,求n個集合元素s中的最大值,其中集合元素的型別為自定義的elementtype。函式介面定義 elementtype max elementtype s,int n 其中給定集合元素存放在陣列s中,正整數n是陣列元素個數。該函式須返回n個s元素中的最大值,其值也必須是eleme...

4 5 求自定型別元素的最大值

本題要求實現乙個函式,求n個集合元素s中的最大值,其中集合元素的型別為自定義的elementtype。elementtype max elementtype s,int n 其中給定集合元素存放在陣列s中,正整數n是陣列元素個數。該函式須返回n個s元素中的最大值,其值也必須是elementtype型...

4 5 求自定型別元素的最大值 10分

本題要求實現乙個函式,求n個集合元素s中的最大值,其中集合元素的型別為自定義的elementtype。函式介面定義 elementtype max elementtype s,int n 其中給定集合元素存放在陣列s中,正整數n是陣列元素個數。該函式須返回n個s元素中的最大值,其值也必須是eleme...