返回列表 發帖
  1. #include<iostream>
  2. #include<ctime>
  3. #include<cstdlib>

  4. using namespace std;
  5. int main()
  6. {
  7.     srand(time(NULL));
  8.     int a,b;
  9.     a = (rand() % 99) + 1;
  10.     for (int i = 1; i <= 10; i++)
  11.     {
  12.         cout << "請輸入第" << i << "個數:";
  13.         cin >> b;
  14.         if (b == a)
  15.         {
  16.               cout << "恭喜你答對了! 答案是:" << a <<"你總共猜了" << i << "次" << endl;
  17.               break;
  18.         }      
  19.         if (b < a)
  20.         {
  21.               cout << "再大一點"<< endl;
  22.         }
  23.         if (b > a)
  24.         {
  25.               cout << "再小一點"<< endl;
  26.         }
  27.         if (b == 10)
  28.         {
  29.               cout << "恭喜你答錯了! 答案是:" << a << endl;
  30.         }
  31.     }
  32.     system("pause");
  33.     return 0;
  34. }
複製代碼

TOP

返回列表