c 實驗總結

2021-07-31 05:29:32 字數 1341 閱讀 6412

鑑於周五有c++模擬考試。。又是小崔出的全新的題目。。所以總結一下以前做過的實驗和學過的重要的知識點或者思路;

problem a: 學生比大小//沒啥坑。。就是實驗的測試用例不完全最開始的答案有bug重新改了之後應該沒問題了

#include 

#include

using

namespace

std;

class student

intoperator>(student another)}}

friend ostream& operator

<<(ostream& os,student& another);

friend istream& operator>>(istream& is,student& another);

};ostream& operator

<<(ostream& os,student& another)

istream& operator>>(istream& is,student& another)

int main()

cout

0;}

problem b: 學生的排序:

最大的坑是老師main函式悄悄改掉了。。

#include 

#include

#include

#include

#include

using

namespace

std;

class student

intoperator>(student another)}}

intoperator

<(student another)

friend istream &operator>>(istream& is,student& stu);

friend ostream &operator

<<(ostream& os,student& stu);

};class studentgroup:public student

void srt()}}

}void show()

}};istream &operator>>(istream& in,student& s)

ostream &operator

<<(ostream& os,student& s)

int main()

stug.srt();

stug.show();

cout

<<"the max is "

0;}

最後花了乙個多小時就做了兩道題我也很絕望啊。。

實驗總結 初中化學典型實驗總結!

化學典型實驗總結一 空氣中氧氣含量的測定1.操作步驟 在集氣瓶內加入少量水,並將水面上方空間分為5等份。用止水夾加緊膠皮管。點燃燃燒匙內的紅磷後。立即伸入瓶中並把塞子塞緊,觀察紅磷燃燒的現象。待紅磷熄滅並冷卻後,開啟止水夾,觀察實驗現象及水面的變化情況。2.實驗現象 有大量白煙產生,集氣瓶內水面上公...

C 官方文件及上機實驗總結

c 程式設計指南 csharp language specification在電腦中的位置 c program files x86 microsoft visual studio 12.0 vc specifications 2052 實驗課次 周次日期 內容2016年03月14日 c 基礎 201...

Epoll實驗總結

2012 09 06 15 54 10 分類 network program 標籤 epoll c 舉報 字型大小 訂閱 我的 書 一 超時實驗 建立乙個阻塞模式的tcp連線到乙個沒有監聽的服務埠 肯定連不上,然後等待超時 然後將這個socket描述符,交由epoll管理。註冊的epoll事件為 e...