返回列表 發帖
  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.    int a,b,c;
  8.    float t,t1=0;
  9.    re:
  10.    system("cls");
  11.    a=rand()%49+51;
  12.    b=rand()%49+51;
  13.    cout<<a<<" + "<<b<<" = ";
  14.    cin>>c;
  15.    t=clock()-t1;
  16.    if(c==a+b)
  17.    {
  18.        cout<<"答對了! 本題花了"<<t<<"毫秒思考"<<endl;
  19.    }
  20.    else
  21.    {
  22.        cout<<"答錯了! 本題花了"<<t<<"毫秒思考"<<endl;
  23.    }
  24.    t1=clock();
  25.    system("pause");
  26.    goto re;
  27.    return 0;
  28. }
複製代碼

TOP

返回列表