- #include<iostream>
- #include<cstdlib>
- #include<string>
- using namespace std;
- int main()
- {
- int n;
- cout<<"超級金頭腦v1.0"<<endl;
- cout<<"遊戲規則:電腦隨機出題 最短時間內答對三題獲勝"<<endl;
- system("pause");
- system("cls");
-
-
- cout<<"有幾位挑戰者"<<endl;
- cin>>n;
- system("pause");
- system("cls");
-
- string name[n];
- for(int i=0;i<n;i++)
- {
- cout<<"第"<<n+1<<"挑戰者 你好 請輸入你的大名"<<endl;
- cin>>name[i];
- }
- system("pause");
- system("cls");
-
- int count=0;
- while(count<3)
- {
- int a =rand()899%+111;
- int b =rand()899%+111;
- double start,end,pass;
-
- int ans;
- start clock();
- cout<a<"+"<b<"="<<endl;
- cin>>ans;
- end=clock();
- pass=end-start;
-
-
-
-
-
-
-
-
- }
-
-
- system("pause");
- return 0;
- }
複製代碼 |