- #include<iostream>
- #include<cstdlib>
- #include<ctime>
- using namespace std;
- int main(){
- srand(time(NULL));
-
- int a,b,ans,ans_c;
- //設定a,b為51~99的隨機數
- a=rand()%49+51;
- b=rand()%49+51;
- ans_c=a+b; //正確答案
- cout<<a<<"+"<<b<<"=";
-
- long t1,t2,pass;
- t1=clock(); //輸出題目後開始計時
- cin>>ans; //輸入使用者答案
- t2=clock(); //停止計時
- pass=t2-t1; //計算所花時間
-
- //判斷使用者輸入答案是否正確
- if(ans==ans_c){
- cout<<"答對了!本題花了"<<pass<<"毫秒思考!"<<endl;
- }
- else{
- cout<<"答錯了!本題花了"<<pass<<"毫秒思考!"<<endl;
- }
-
- system("pause");
- return 0;
- }
複製代碼 |