C 習題 物件陣列求最大值

2022-08-03 10:21:14 字數 465 閱讀 9417

建立乙個物件陣列,內放n(<10)個學生的資料(學號、成績),設立乙個函式max,用指向物件的指標作函式引數,在max函式中找出n個學生中成績最高者,並輸出其學號。

n和n個學生的學號、成績

成績最高者的學號和成績

5101 78.5102 85.5103 98.5104 100.0105 95.5

104 100.00

#include#includeusing namespace std;

class student

;void student::input()

void max(student *p,int n)

coutn;

for(i=0; istud[i].input();

cout

max(p,n);

return 0;

}

C 習題 物件陣列求最大值

建立乙個物件陣列,內放n 10 個學生的資料 學號 成績 設立乙個函式max,用指向物件的指標作函式引數,在max函式中找出n個學生中成績最高者,並輸出其學號。n和n個學生的學號 成績 成績最高者的學號和成績 include includeusing namespace std class stud...

YTU OJ 物件陣列求最大值

time limit 1 sec memory limit 128 mb submit 1013 solved 735 submit status web board 建立乙個物件陣列,內放n 10 個學生的資料 學號 成績 設立乙個函式max,用指向物件的指標作函式引數,在max函式中找出n個學生...

C 陣列或vector求最大值最小值

可以用max element 及min element 函式,二者返回的都是迭代器或指標。標頭檔案 include 1.求陣列的最大值或最小值 1 vector容器 例 vectorv 最大值 int maxvalue max element v.begin v.end 最小值 int minval...