time limit: 1000ms
memory limit: 65536kb
submit
statistic
建立物件陣列,內放5個學生資料(學號是字串型別、成績是整型),設立max函式,用指向物件的指標作函式引數,在max函式中找出5個學生中成績最高者,並輸出其學號和成績。
輸入5個學生資料。
輸出5個學生中成績最高者的學號和成績。
01 8902 78
03 56
04 92
05 76
04 92
#includeusing namespace std;
class student
;student a[5];
void max(student *&p)
}}int main()
student *p=&a[0];
max(p);
coutreturn 0;
}
物件導向程式設計上機練習九(物件指標)
time limit 1000ms memory limit 65536kb submit statistic problem description 建立物件陣列,內放5個學生資料 學號是字串型別 成績是整型 設立max函式,用指向物件的指標作函式引數,在max函式中找出5個學生中成績最高者,並輸...
物件導向程式設計上機練習九(物件指標)
problem description 建立物件陣列,內放5個學生資料 學號是字串型別 成績是整型 設立max函式,用指向物件的指標作函式引數,在max函式中找出5個學生中成績最高者,並輸出其學號和成績。input 輸入5個學生資料。output 輸出5個學生中成績最高者的學號和成績。example...
物件導向程式設計上機練習九(物件指標)
time limit 1000ms memory limit 65536kb statistic problem description 建立物件陣列,內放5個學生資料 學號是字串型別 成績是整型 設立max函式,用指向物件的指標作函式引數,在max函式中找出5個學生中成績最高者,並輸出其學號和成績...