影音先锋男人资源在线观看,精品国产日韩亚洲一区91,中文字幕日韩国产,2018av男人天堂,青青伊人精品,久久久久久久综合日本亚洲,国产日韩欧美一区二区三区在线

09-10程序設(shè)計(jì)及算法語言Ⅱ上機(jī)考試試卷B(電類)答

上傳人:努力****83 文檔編號:65488306 上傳時(shí)間:2022-03-24 格式:DOC 頁數(shù):5 大?。?0.50KB
收藏 版權(quán)申訴 舉報(bào) 下載
09-10程序設(shè)計(jì)及算法語言Ⅱ上機(jī)考試試卷B(電類)答_第1頁
第1頁 / 共5頁
09-10程序設(shè)計(jì)及算法語言Ⅱ上機(jī)考試試卷B(電類)答_第2頁
第2頁 / 共5頁
09-10程序設(shè)計(jì)及算法語言Ⅱ上機(jī)考試試卷B(電類)答_第3頁
第3頁 / 共5頁

下載文檔到電腦,查找使用更方便

10 積分

下載資源

還剩頁未讀,繼續(xù)閱讀

資源描述:

《09-10程序設(shè)計(jì)及算法語言Ⅱ上機(jī)考試試卷B(電類)答》由會員分享,可在線閱讀,更多相關(guān)《09-10程序設(shè)計(jì)及算法語言Ⅱ上機(jī)考試試卷B(電類)答(5頁珍藏版)》請?jiān)谘b配圖網(wǎng)上搜索。

1、東南大學(xué)09級C++(下)上機(jī)試卷B-答案 一、改錯(cuò)題(50分)本題共10個(gè)錯(cuò)誤,每個(gè)錯(cuò)誤5分 #include #include using namespace std; class student { char *pName; public: student(); student(char *pname); student(student &s); ~student(); student & operator=(student &s); void print(); }; student::st

2、udent() //去掉void { cout<<"Constructor"; pName=NULL; cout<<"缺省"<

3、 //改為student &s { cout<<"Copy Constructor"; if(s.pName) { int len = strlen( s.pName ); pName = new char[len+1]; //len改為len+1 if ( pName ) strcpy (pName, s.pName); cout<

4、out<

5、se pName=NULL; return *this; //改為return *this; } void student::print( ) //改為void student::print( ) { if (pName = NULL ) cout << "NULL" << endl; else cout << pName << endl; } void main(void) { student s1("范英明"),s2("沈俊"); student *s3 = new student; *s3 = s1;

6、 //改為*s3 = s1; s1.print(); s2.print(); s3->print(); //改為s3->print(); delete s3; return; //去掉0 } 二、編程題(50分)每段代碼10分,共50分。紅字為要求設(shè)計(jì)的部分。 #include #include #include using namespace std; class goods; ostream& operator<<(ostrea

7、m &os, goods &a); istream& operator>>(istream &is, goods &a); class goods { string Name; //名稱 int Amount; //數(shù)量 float Price; //單價(jià) public: goods (); ~ goods (); //析構(gòu)函數(shù),將數(shù)據(jù)保存到文件中 bool IsEmpty(){ return Name==""; }; friend ostream& operator<<(ostream &os, goods &a); //用于

8、直接輸出數(shù)組對象 friend istream& operator>>(istream &is, goods &a); }; goods:: goods () { ifstream file("goodinfo.data"); if ( file ) //文件打開成功 { file >> *this; file.close(); } else { Name = ""; Amount = 0; Price = 0; } } goods::~ goods () { ofstream file("go

9、odinfo.data"); file << *this; file.close(); } ostream& operator << (ostream &os, goods &a) { os << a.Name << endl; os << a.Amount << endl; os << a.Price << endl; return os; } istream& operator >> (istream &is, goods &a) { if ( is == cin ) { cout << "請輸入你的以下信息:" <<

10、endl; cout << "名稱:"; is >> a.Name; cout << "數(shù)量:"; is >> a.Amount; cout << "單價(jià):"; is >> a.Price; } else { is >> a.Name; is >> a.Amount; is >> a.Price; } return is; } void main() { goods g; if ( g.IsEmpty() ) cin >> g; cout << endl; cout << "顯示商品信息:" << endl; cout << g; }

展開閱讀全文
溫馨提示:
1: 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
2: 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
3.本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
5. 裝配圖網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

相關(guān)資源

更多
正為您匹配相似的精品文檔
關(guān)于我們 - 網(wǎng)站聲明 - 網(wǎng)站地圖 - 資源地圖 - 友情鏈接 - 網(wǎng)站客服 - 聯(lián)系我們

copyright@ 2023-2025  zhuangpeitu.com 裝配圖網(wǎng)版權(quán)所有   聯(lián)系電話:18123376007

備案號:ICP2024067431-1 川公網(wǎng)安備51140202000466號


本站為文檔C2C交易模式,即用戶上傳的文檔直接被用戶下載,本站只是中間服務(wù)平臺,本站所有文檔下載所得的收益歸上傳人(含作者)所有。裝配圖網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對上載內(nèi)容本身不做任何修改或編輯。若文檔所含內(nèi)容侵犯了您的版權(quán)或隱私,請立即通知裝配圖網(wǎng),我們立即給予刪除!