本題要求實現乙個函式,求n個集合元素s中的最大值,其中集合元素的型別為自定義的elementtype。
函式介面定義:
elementtype max( elementtype s, int n );
其中給定集合元素存放在陣列s中,正整數n是陣列元素個數。該函式須返回n個s元素中的最大值,其值也必須是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 )
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...
函式題 4 5 求自定型別元素的最大值
4 5 求自定型別元素的最大值 本題要求實現乙個函式,求n個集合元素s中的最大值,其中集合元素的型別為自定義的elementtype。elementtype max elementtype s,int n 其中給定集合元素存放在陣列s中,正整數n是陣列元素個數。該函式須返回n個s元素中的最大值,其值...