本帖最後由 游東祥 於 2014-5-10 15:32 編輯
產生四個0~9的數字不能重複!
- #include <iostream>
- #include <cstdlib>
- #include <ctime>
- using namespace std;
- int main()
- {
- srand(time(NULL));
-
- int r[4] = {};
-
- for (int i = 0; i < 4; i++)
- {
- bool repeat = false;
- r[i] = rand() % 10;
- for (int j = 0; j < i; j++)
- {
- if (r[i] == r[j])
- {
- repeat = true;
- break;
- }
- }
- if (repeat == true)
- {
- i--;
- }
- }
-
- cout << "產生的亂數是 : " << r[0] << r[1] << r[2] << r[3] << endl;
-
- return 0;
- }
複製代碼 |