返回列表 發帖

超級金頭腦 (一)

本帖最後由 鄭繼威 於 2023-2-22 21:11 編輯

設計遊戲 "超級金頭腦",
讓使用者計算兩個範圍介於51~99之隨機亂數的和.



  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.         srand(time(NULL));
  8.        
  9.         int x, y, ans, ans_c;
  10.         //51~99->-51 ->0~48
  11.         x=rand()%49+51;
  12.         y=rand()%49+51;
  13.         ans_c=x+y;        //正確答案
  14.         cout<<x<<" + "<<y<<" = ";

  15.         long t1,t2,pass;
  16.         t1=clock();
  17.         cin>>ans;        //使用者輸入答案
  18.         t2=clock();
  19.         pass=t2-t1;        //經過的秒數
  20.    
  21.         //判斷使用者輸入的答案是否等於正確答案
  22.         if(ans_c==ans)
  23.         {
  24.                 cout<<"答對了! 本題花了"<<pass<<"毫秒思考!"<<endl;
  25.         }
  26.         else
  27.         {
  28.                 cout<<"答錯了! 本題花了"<<pass<<"毫秒思考!"<<endl;  
  29.         }
  30.           
  31.    
  32.         system("pause");
  33.         return 0;
  34. }
複製代碼

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表