/*【任務4】設計乙個學生類,包括學號(num)和成績(score)。建立乙個物件陣列,內放5個學生的資料,要求:
(1) 用指標指向陣列首元素,輸出第1、3、5個學生的資訊;
(2) 設計乙個函式max,用指向物件的指標作函式引數,在max函式中找出5個學生中成績最高者,並輸出其學號。*/
#includeusing namespace std;
class student
; void max(student *arr);
void display();
private:
int num;
int score; };
void student :: display()
void student :: max(student *arr)
} cout << "最高成績同學的學號和成績:" << endl << endl;
cout << arr[k].num << " " << max_score << endl;
}int main()
; student *p = stud;
for(int i = 0; i <= 2; p += 2, ++i)
cout << endl;
p->max(stud);
return 0;
}
第五周 任務四
對任務及求解方法的描述部分 輸入描述 問題描述 程式輸出 程式頭部的注釋結束 include using namespace std class student void display int num float score int main student p stud cout void ma...
第五周任務四
程式的版權和版本宣告部分 檔名稱 作 者 計114 3 付文傑 完成日期 2012 年3 月 20日 版 本 號 對任務及求解方法的描述部分 輸入描述 問題描述 程式輸出 程式頭部的注釋結束 includeusing namespace std class student void max stud...
第五周任務1 4
程式頭部注釋開始 include includeusing namespace std class float perimeter void 計算三角形的周長 float area void 計算並返回三角形的面積 void showmessage private float a,b,c 三邊為私有...