本帖最後由 高昀昊 於 2022-5-14 11:01 編輯
- #include<iostream>
- #include<cstdlib>
- #include<ctime>
- using namespace std;
- int main()
- {
- cout<<"-----超級金頭腦-----"<<endl<<"請問: ";
- int n[2];
- int x,y=0;
- srand(time(NULL));
- for(int j=0; j<2; j++)
- {
- n[j]=rand()%49+51;
- y+=n[j];
- }
- for(int j=0; j<2; j++)
- {
- cout<<n[j]<<" ";
- if(j==0)
- cout<<"+ ";
- if(j==1)
- cout<<"= ";
- }
- long a,b;
- a=clock();
- cin>>x;
- b=clock();
- if(x==y)
- {
- cout<<"答對了,本題花了"<<b-a<<"毫秒思考"<<endl;
- }else{
- cout<<"答錯了,答案為"<<y<<",本題花了"<<b-a<<"毫秒思考"<<endl;
- }
- system("pause");
- return 0;
- }
複製代碼 |