指標操作學生類

2021-06-20 04:33:40 字數 777 閱讀 2799

設計乙個學生類student,包括學號(num)和成績(score)。建立乙個物件陣列,通過初始化,設定5個學生的資料,要求:

(1)用指標指向陣列首元素,輸出第1、3、5個學生的資訊;

(2)設計乙個函式int max(student *arr);,用指向物件的指標作函式引數,在max函式中找出5個學生中成績最高者,並返回值其學號。

#includeusing namespace std;

const int size=5;

class student

int num()

int score()

void setvalue(int n=1,int s=60)

friend ostream &operator<

arr-=5;//指標退回初始位置(這裡犯錯誤第。。)

for(int i=0;i<5;i++)

if(m==arr[i].score()) n=arr[i].num();

return n;

}int main()

}// arr-=5;//指標退回初始位置(這裡犯錯誤第。。)

學生類(指標)

設計乙個學生類student,資料成員包括學號 num 和成績 score 成員函式根據需要自行設計 建議配備需要的set get函式,以及必要的輸入或輸出,給出的 中也可以找到需要成員函式的線索 在main函式中,要做到 includeusing namespace std class stude...

指向學生類的指標

corpyright c 2013,煙台大學計算機學院 all right reseved.完成日期 2014年3月30日 版本號 v1.0 輸入描述 問題描述 類的指標!程式輸出 問題分析 演算法設計 include include include using namespace std clas...

指向學生類的指標

檔名稱 123.cpp 作 者 隋宗濤 完成日期 2016年5月10日 版 本 號 v1.0 問題描述 設計乙個學生類student,資料成員包括學號 num 和成績 score 成員函式根據需要自行設計。輸入描述 無。程式輸出 無。include include using namespace s...