freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內(nèi)容

面向對象程序設計大作業(yè)參考題目和要求-文庫吧

2025-05-26 02:27 本頁面


【正文】 的軟件,設計方案較先進,無明顯錯誤;中(7079分):完成課題規(guī)定的功能,有完整的符合標準的文檔,有基本實現(xiàn)設計方案的軟件,設計方案正確,但有少數(shù)失誤;及格:完成課題規(guī)定的大部分功能,有完整的符合標準的文檔,有基本實現(xiàn)設計方案的軟件,設計方案基本正確,個別功能沒有實現(xiàn),但錯誤不多;不及格:沒有完成課題規(guī)定的功能,沒有完整的符合標準的文檔,軟件沒有基本實現(xiàn)設計方案,設計方案不正確。 附錄一:(封面樣式)附件1:學 號: 《面向對象程序設計》大作業(yè)題 目學生成績管理系統(tǒng)學 院文法學院專 業(yè)教育學班 級教育學1201姓 名指導教師鄢紅國2013年12月20日(正文部分)一、需求分析(標題均為小三號,宋體)(正文均為小四號,宋體,)(對所選擇題目進行分析,描述問題。簡述課題要解決的問題是什么,有什么要求和限制條件。列出參與人員進行本設計時要達到的具體的目標。)二、總體設計(對設計目標進行總體分析,說明要采用的基本思路,說明遇到的問題和解決方法。說明完成本次大作業(yè)的完整過程。要描述程序的設計思想,畫出本次大作業(yè)完整的程序框圖或流程圖。)三、詳細設計(要求列出所有編寫的函數(shù)清單,說明每個函數(shù)的功能,各形式參數(shù)的意義,畫出各函數(shù)的調(diào)用關系圖。即模塊功能說明(如函數(shù)功能、入口及出口參數(shù)說明,函數(shù)調(diào)用關系描述等)。)四、程序運行結果測試與分析(要針對程序處理的不同情況列出有代表性的輸入和輸出,用足夠多的實例說明程序完成了設計任務和目標。)五、結論與心得(主要說明程序調(diào)試中發(fā)現(xiàn)的問題和解決辦法,包括你在該設計中主要承擔什么任務,在設計中學到了什么,哪里遇到了困難,解決的辦法,可能但因時間關系沒有來得及完成的想法,今后的目標等。)六、致謝include iostreaminclude listinclude stringinclude algorithm using namespace std。class Student { public: string name。 string ID。 int grade。 Student(string pName,string pID, int pgrade) { name=pName。 ID=pID。 grade=pgrade。 } // 顯示學生的信息 void print() { cout name \t ID \t grade endl。 } }。 listStudent lst。//學生鏈表,用于存放學生數(shù)據(jù) void print(listStudent lst)//顯示鏈表中所有的學生 { listStudent::iterator it。 cout tname\tID\tgrade endl。 for(it = ()。 it != ()。 ++it) itprint()。 cout endl。 } void insertStudent()//插入一個學生 { system(cls)。 cout請輸入學號IDendl。 string tID。 cintID。 cout請輸入姓名:endl。 string tname。 cintname。 cout請輸入分數(shù):endl。 int tgrade。 cintgrade。 Student stu(tname,tID,tgrade)。 (stu)。 listStudent::iterator it。 for(it = ()。 it != ()。 ++it) { itprint()。 } } void deleteStudent()//按要求刪除一個學生 { system(cls)。 cout請輸入要刪除學生的學號ID:endl。 string tID。 cintID。 bool flag=false。 listStudent::iterator it。 for(it = ()。 it != ()。 ++it) { if (itID==tID) { cout查找到,該學生信息如下:endl。 itprint()。 (it)。 cout刪除完畢!endl。 flag=true。 break。 } } if (flag==false) { cout未找到!endl。 } } void screenA()//顯示屏幕操作A { cout****************************************endl。 cout 1查詢endl。 cout 2插入endl。 cout 3刪除endl。 cout 4顯示endl。 cout 5退出endl。 cout****************************************endl。 } void searchByName()//按名字查找 { cout請輸入姓名:endl。 string tname。 cintname。 bool flag=false。 listStudent::iterator it。 for(it = ()。 it != ()。 ++it) { if (itname==tname) { cout查找到,該學生信息如下:endl。 itprint()。 flag=true。 break。 } } if (flag==false) { cout未找到!endl。 } } int main(){ char ch。 screenA()。 while (cinch) { system(cls)。 switch(ch) { case 39。139。: searchByName()。 break。 case 39。239。://插入學生 insertStudent()。 break。 case 39。339。://刪除學生 deleteStudent()。 break。 case 39。439。://顯示當前信息 cout當前數(shù)據(jù)列表如下endl。 print(lst)。 break。 case 39。539。://退出 return 0。 } system(pause)。 system(cls)。 screenA()。 } cout系統(tǒng)退出endl。 return 0。}
點擊復制文檔內(nèi)容
教學教案相關推薦
文庫吧 www.dybbs8.com
備案圖鄂ICP備17016276號-1