- #include <iostream>
- #include <ctime>
- #include <cstdlib>
- using namespace std;
- int main()
- {
- srand(time(NULL));
- int a = 0;
- int b = 0;
- int c = 0;
- cout << "請選擇難度(輸入代碼)" << endl;
- cout << "1.初階-1~99" << endl;
- cout << "2.中階-1~999" << endl;
- cout << "3.高階-1~9999" << endl;
- cout << "請選擇:" << endl;
- cin >> c;
- if(c == 1)
- {
- a = (rand() % 99) + 1;
- }
- if(c == 2)
- {
- a = (rand() % 999) + 1;
- }
- if(c == 3)
- {
- a = (rand() % 9999) + 1;
- }
- for(int i = 1; i <= 10; i++)
- {
- cout << "☆請輸入第" << i << "次★:" ;
- cin >> b;
- if(b == a)
- {
- cout << "★恭喜你答對了,答案為:" << a << "☆" << endl;
- break;
- }
- if(b < a)
- {
- cout << "在大點" << endl;
- }
- if(b > a)
- {
- cout << "在小點" << endl;
- }
- if(i == 10)
- {
- cout << "★恭喜你答錯了,答案為:" << a << "☆" << endl;
- }
- }
- system("pause");
- return 0;
- }
複製代碼 |