返回列表 發帖
本帖最後由 高昀昊 於 2022-5-14 11:01 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     cout<<"-----超級金頭腦-----"<<endl<<"請問: ";
  8.     int n[2];
  9.     int x,y=0;
  10.     srand(time(NULL));
  11.     for(int j=0; j<2; j++)
  12.     {
  13.         n[j]=rand()%49+51;
  14.         y+=n[j];
  15.     }  
  16.     for(int j=0; j<2; j++)
  17.     {
  18.         cout<<n[j]<<" ";
  19.         if(j==0)
  20.         cout<<"+ ";
  21.         if(j==1)
  22.         cout<<"= ";
  23.     }
  24.     long a,b;
  25.     a=clock();
  26.     cin>>x;
  27.     b=clock();
  28.     if(x==y)
  29.     {
  30.             cout<<"答對了,本題花了"<<b-a<<"毫秒思考"<<endl;
  31.         }else{
  32.                 cout<<"答錯了,答案為"<<y<<",本題花了"<<b-a<<"毫秒思考"<<endl;
  33.         }
  34.     system("pause");
  35.     return 0;   
  36. }
複製代碼

TOP

返回列表