返回列表 發帖
  1. #include<iostream>
  2. #include<ctime>
  3. using namespace std;
  4. int main()
  5. {
  6. srand(time(NULL));
  7. int  x,y,ans,ans_1;
  8. x=rand()%49+51;
  9. y=rand()%49+51;

  10. ans=x+y;
  11. cout<<x<<" + "<<y<<" = ";

  12. int start,end,p;
  13. start=clock();
  14. cin>>ans_1;
  15. end=clock();
  16. p=end-start;

  17. if(ans==ans_1)
  18. {
  19.                cout<<"Correct. Time taken: "<<p<<" Seconds"<<endl;
  20.                }
  21. else
  22. {
  23.                cout<<"Incorrect. Time taken: "<<p<<" Seconds"<<endl;
  24.                }
  25.    
  26.         system("pause");
  27.         return 0;
  28. system("pause");
  29. return 0;
  30. }
複製代碼

TOP

返回列表