#include//using std::string;//不可省略啊using namespace std;
class gradebook
;
#include "gradebook.h"
#include //不寫的話就會出現未定義識別符號cout
using namespace std;
gradebook::gradebook(string name)
//進行判斷,如果輸入coursename字元大於25,則取前25個字元
void gradebook::setcoursename(string name)
}string gradebook::getcoursename()
void gradebook::displaymessage()
//比較後輸出三個整數中的最大值
int gradebook::maximum(int x,int y,int z)
void gradebook::inputgrades()
void gradebook::displaygradereport()
#include "gradebook.h"
int main()
C 大學基礎教程 11 10
ifndef string h define string h include using namespace std class string bool operator bool operator const string right const 寫內聯函式的時候忘記寫引數,bool opera...
C 大學基礎教程筆記 一
1.修改const物件的任何企圖在編譯時就會被發現,而不是等到執行期才導致錯誤。2.將變數和物件宣告為const可以提高效能,編譯器可以對常量提供某些相對變數來說不能提供的優化。3.對於const物件,c 編譯器不允許進行成員函式的呼叫,除非成員函式本身也宣告為const。4.要將函式指定為cons...
Python基礎教程 函式及其引數
1 函式 定義乙個函式,就好像是給一段 取個名字。def 是關鍵字 表示定義乙個函式 然後是函式的 名字 縮排的 表示這個函式名字代表的具體動作是什麼,稱之為 函式體。def workflow print 第一步 開啟 print 第二步 輸入 print 第三步 執行 print 第四步 結果 w...