返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;

  5. int main(){
  6.     int x,y;
  7.     int ans, anskey;
  8.     srand(time(NULL));
  9.    
  10.     x=rand()%49+51;
  11.     y=rand()%49+51;
  12.    
  13.     x+y=anskey;
  14.    
  15.     cout<<--------"算數學遊戲--------"<<endl;
  16.     cout<<x<<"+"<<y<<"=";
  17.     cin>>ans;
  18.    
  19.     if(ans == anskey){
  20.     cout<<"恭喜答對囉!
  21.     "
  22.     }
  23.    
  24.     system("pause");
  25.     return 0;   
  26. }
  27. //NOT DONE YET
複製代碼

TOP

返回列表