本帖最後由 王瑞喻 於 2020-7-25 11:24 編輯
設計遊戲 "超級金頭腦",
讓使用者計算兩個範圍介於51~99之隨機亂數的和.
參考作法如下:
1. 要有一個起始畫面, 顯示標題與遊戲規則
2. 參賽人數
3. 參賽者姓名
4. 請就位的訊息
5. 測驗中畫面
6. 排名
- #include<iostream>
- #include<cstdlib>
- #include<ctime>
- using namespace std;
- int main()
- {
- int x;
- long t1,t2;
- srand(time(NULL));
- cout<<"*** 超級金頭腦 v1.0 ***"<<endl<<endl;
- cout<<"遊戲規則: 電腦隨機出題, 比賽誰能在最短的時間內算對三題!"<<endl<<endl;
- cout<<"有幾位挑戰者? ";
- cin>>x;
- string name[x];
- long score[x];
- for(int i=0; i<x; i++)
- {
- system("cls");
- score[i]=0;
- cout<<"第"<<i+1<<"位挑戰者你好, 請輸入你的大名: ";
- cin>>name[i];
- cout<<name[i]<<"同學請就位!"<<endl<<endl;
- system("pause");
- system("cls");
- int n=0; //答對的次數
- int ans;
-
- while(n<3)
- {
- int a=rand()%9+1;
- int b=rand()%9+1;
- cout<<a<<" + "<<b<<" = ";
- t1=clock();
- cin>>ans;
- t2=clock();
- if(ans==a+b)
- {
- cout<<"答對了! ";
- n++;
- }
- else
- cout<<"答錯了! 正確答案是"<<a+b<<". ";
- cout<<"本題花了"<<t2-t1<<"毫秒思考!"<<endl;
- score[i]+=(t2-t1);
- }
- cout<<endl<<name[i]<<"同學總共花了"<<score[i]<<"毫秒!"<<endl;
- system("pause");
- }
- system("cls");
- cout<<"*** 金頭腦風雲榜 ***"<<endl<<endl;
- string tmp1;
- long tmp2;
- for(int i=0; i<x-1; i++)
- {
- for(int j=i+1; j<x; j++)
- {
- if(score[j]<score[i])
- {
- tmp1=name[i];
- name[i]=name[j];
- name[j]=tmp1;
- tmp2=score[i];
- score[i]=score[j];
- score[j]=tmp2;
- }
- }
- }
- for(int i=0; i<x; i++)
- cout<<"第"<<i+1<<"名\t"<<name[i]<<"\t"<<score[i]<<"毫秒"<<endl;
- cout<<endl;
- system("pause");
- return 0;
- }
複製代碼 |