C++ 單項選擇題標準化考試系統(tǒng)_第1頁
C++ 單項選擇題標準化考試系統(tǒng)_第2頁
C++ 單項選擇題標準化考試系統(tǒng)_第3頁
C++ 單項選擇題標準化考試系統(tǒng)_第4頁
C++ 單項選擇題標準化考試系統(tǒng)_第5頁
已閱讀5頁,還剩3頁未讀 繼續(xù)免費閱讀

下載本文檔

版權說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權,請進行舉報或認領

文檔簡介

1、目 錄1.課程設計目的12.課程設計題目描述和要求12.1課程題目12.2課程要求13.課程設計報告內(nèi)容13.1算法描述13.2 源程序24.課程設計總結:65.參考書目71 課程設計目的 練習自己的動手能力,在學習理論的同時增強自己的編程能力,使理論與實踐相結合,在學習書本的同時擴展自己的課外知識.2 課程設計題目描述和要求2.1課程題目 單項選擇題標準化考試系統(tǒng)2.2課程要求(一)功能要求:(1)用文件保存試題庫。(每個試題包括題干、4個備選答案、標準答案)(2)試題錄入:可隨時增加試題到試題庫中(3)試題抽?。好看螐脑囶}庫中可以隨機抽出N道題(N由鍵盤輸入)(4)答題:用戶可實現(xiàn)輸入自己

2、的答案(5)自動判卷:系統(tǒng)可根據(jù)用戶答案與標準答案的對比實現(xiàn)判卷并給出成績。(二)其它要求:(1) 只能使用C/C+語言,源程序要有適當?shù)淖⑨?,使程序容易閱讀(2) 至少采用文本菜單界面(如果能采用圖形菜單界面更好)(3) 學生可自動增加新功能模塊(視情況可另外加分)(4)寫出課程設計報告,具體要求見相關說明文檔.3 課程設計報告內(nèi)容3.1算法描述 定義題目數(shù)組,選向數(shù)組,輸入題目的及選向并給定正確答案。輸入所要答的題目數(shù),然后進行答題。輸入的答案與標準答案進行比較,如果一致,則正確,否則錯誤。最后根據(jù)題目數(shù)及答對題目數(shù)進行輸出得分。 3.2 源程序#include <iostream&

3、gt;#include <fstream>#include "dos.h"using namespace std;struct question char ask200;/*選擇題題目*/ char answer480;/*選擇題選項*/ int right;/*正確答案*/ struct question *next; ; /函數(shù)聲明int MenuChoice(void); /選擇菜單struct question *charu_timu(struct question *fst, const struct question *ad); /向列表中插入試題函

4、數(shù)struct question *da_an_weizhi(struct question *seek, long len, long max); /確定一個讀取答案的位置的函數(shù)void GetQuestion(struct question *src); /獲取問題,選項,以及正確答案函數(shù)void bao_cun(const struct question *ed, FILE *saf); /將列表中的試題保存在文件中的函數(shù)struct question *LoadFile(struct question *td, FILE *laf); /從文件中讀取題目,將題目添加到列表中的函數(shù)int

5、 GetAnswer(void); /輸入選擇題的答案void huida_Question(const struct question *que, int n); /回答問題函數(shù)main() struct question *start = NULL, temp; long choice, line = 0, c; FILE *fp = fopen("wangkun.dat", "a+"); while (choice = MenuChoice() != 3) if (choice = 1) GetQuestion(&temp); start

6、= charu_timu(start, &temp); +line;/*統(tǒng)計列表的長度*/ system("cls"); else if (choice = 2) c =8; while (c > 6 | c > line) cout<<"請輸入要回答的問題數(shù)量: " cin>>c; huida_Question(start, line); return 0; /*da_an_weizhi函數(shù)確定一個讀取答案的位置,len代表要讀取的答案數(shù),max代表列表的長度*/ struct question *da_an

7、_weizhi(struct question *seek, long len, long max) int i; while (i-) seek = seek->next;/找到指定的位置 return seek; /向列表中插入試題 struct question *charu_timu(struct question *fst, const struct question *ad) struct question *newPtr = (struct question *)malloc(sizeof(struct question); if (newPtr = NULL) exit(

8、0); *newPtr = *ad; newPtr->next = fst; return newPtr; /*獲取問題,選項,以及正確答案*/ void GetQuestion(struct question *src) int i = 0; cout<<"請輸入選擇題題目:"<<endl; cin>>src->ask;while (i < 4) cout<<"請輸入選項"<<char(i + 'A')<<"的答案:"<&

9、lt;endl; cin>>src->answeri+; src->right = GetAnswer(); /*從文件中讀取題目,將題目添加到列表中*/struct question *LoadFile(struct question *td, FILE *laf) struct question temp; while (fread(&temp, 1, sizeof(struct question), laf) td = charu_timu(td, &temp); return td; /*將列表中的試題保存在文件中*/ void bao_cun(

10、const struct question *ed, FILE *saf) fclose(saf); if (saf = fopen("wankun.dat", "w") = NULL)/以寫的方式重新打開文件 return ; while (ed) fwrite(ed, 1, sizeof(struct question), saf); ed = ed->next; /得到選擇題的答案(不保證是正確的答案) int GetAnswer(void) char c=0 ;/必須進行初始化,避免出現(xiàn)偶然性的錯誤 fflush(stdin); while

11、 (c < 'A' | c > 'D') /確保輸入的答案是A, B, C, D中的一個 cout<<"請輸入正確的答案: "<<endl;cin>> c; return c; /回答問題,并統(tǒng)計答對題目數(shù),顯示得分void huida_Question(const struct question *que, int n) int i = 0, t = n; char result1001, *p = result; for (i = 0; n-; que = que->next) cou

12、t<<que->ask<<endl; cout<<que->answer0<<endl;cout<<que->answer1<<endl;cout<<que->answer2<<endl; cout<<que->answer3<<endl; if (*p = que->right) = (*(p + 1) = GetAnswer() +i; *p = '0' cout<<"標準答案"<&

13、lt;" 您的答案 "<<endl;for (p = result; *p != '0' ) cout<<*p<<" "<<*(p+1)<<endl;cout<<"您回答了"<<t<<"道題, 答對"<<i<<"道題目, 得分:"<< (float)i / t * 100.00<<endl; /選擇菜單int MenuChoice(voi

14、d) int value; cout<<" *"<<endl;cout<<" * *"<<endl;cout<<" * 1 :添加選擇題 *"<<endl;cout<<" * 2 :回答選擇題 *"<<endl;cout<<" * 3 :退出 *"<<endl;cout<<" * *"<<endl;cout<<" *"<<endl;cin>>value;return value; 4 課程設計總

溫馨提示

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

評論

0/150

提交評論