/*
*煙台大學計算機學院
*檔名稱:xiangmu2.cpp
*作 者:李亞輝
*完成日期:2023年6月8日
*版 本 號:vc++6.0
*
*問題描述:設計乙個函式int max(student *arr);,用指向物件的指標作函式引數,在max函式中找出5個學生中成績最高者,並返回值其學號
*輸入描述: 無
*程式輸出: 輸出第1、3、5個學生的資訊
.*/
#includeusing namespace std;
class student
void show();
int getnum()
double getscore()
private:
int num; //學號
double score; //成績
};
//max函式返回arr指向的物件陣列中的最高成績(max並不是成員函式,而是普通函式)
void student::show()
return arr[k].getnum();
} //返回最高成績者的學號
} //學習心得:感覺把這個專案並不複雜,在c語言裡只是乙個很平常的程式,在c++裡,更看重的是對新知識的掌握與運用,注意那些是成員函式,那些非成員函式,注意區分他們的不同
第八周 專案2
程式的版權和版本宣告部分 檔名稱 object.cpp 完成日期 2013年 4 月 23日 版本號 v1.0 輸入描述 無 問題描述 程式輸出 略。include using namespace std class ctime void settime int h,int m,int s void...
第八周 專案3 2
檔名稱 main.cpp 作者 孫彩虹 完成日期 2015年11月16日 問題描述 試編寫演算法,實現將已知字串所有字元倒過來重新排列。include ifndef sqstring h included define sqstring h included define maxsize 100 最...
第八周 專案3 3
檔名稱 main.cpp 作者 孫彩虹 完成日期 2015年11月16日 問題描述 從串s中刪除其值等於c的所有字元。include ifndef sqstring h included define sqstring h included define maxsize 100 最多的字元個數 ty...