- #include<iostream>
- #include<cstdlib>
- #include<ctime>
- using namespace std;
- int main()
- {
- re:
- long start, end, pass;
- int n;
- int a;
- int b;
- int ans;
- cout<<"----------超級金頭腦-----------"<<endl;
- cout<<endl;
- cout<<"遊戲規則: 電腦隨機出題,比賽誰能在最短時間答對三題!"<<endl;
- system("pause");
- system("cls");
-
- cout<<"有幾位挑戰者: ";
- cin>>n;
- system("pause");
- system("cls");
-
- string name[n];
- long sum[n];
- srand(time(NULL));
-
- for(int i=0;i<n;i++)
- {
- sum[i]=0;
- cout<<"第"<<i+1<<"挑戰者你好,請輸入大名: ";
- cin>>name[i];
- system("pause");
- system("cls");
-
- cout<<"同學請就位!"<<endl;
- system("pause");
- system("cls");
-
- int count=0;
- while(count<3)
- {
-
- a=rand()%9+1;
- b=rand()%9+1;
- start = clock();
- cout<<a<<" + "<<b<<" = ";
- cin>>ans;
- end = clock();
- pass = end-start;
-
- if(ans == (a+b))
- {
- cout<<"答對ㄌ!!!本題花ㄌ"<<pass<<"豪秒思考!"<<endl;
- sum[i] = sum[i] + pass;
- count++;
- }
- else
- {
- cout<<"答錯了!正確答案是"<<a+b<<". 本題花了"<<pass<<"毫秒思考!"<<endl;
- sum[i] = sum[i] + pass;
- }
- }
- }
- cout<<"----------超級金頭腦-----------"<<endl;
- string tmp1;
- long tmp2;
- for(int i=0;i<n-1;i++)
- {
- for(int j=i+1;j<n;j++)
- {
- if(sum[j]<sum[i])
- {
- tmp1 = name[i];
- name[i] = name[j];
- name[j] = tmp1;
- tmp2 = sum[i];
- sum[i] = sum[j];
- sum[j] = tmp2;
- }
- }
- }
- for(int i=0; i<n; i++)
- cout<<"第"<<i+1<<"名\t"<<name[i]<<"\t"<<sum[i]<<"毫秒"<<endl;
- cout<<endl;
- system("pause");
- system("cls");
-
- goto re;
- system("pause");
- return 0;
- }
複製代碼 |