먼저 rand() 함수에 대해 논의하겠습니다. rand() 함수는 C++의 미리 정의된 메서드입니다.
알고리즘
Begin Declare max_n to the integer datatype. Initialize max_n = 100. Declare min_n to the integer datatype. Initialize min_n = 1. Declare new_n to the integer datatype. Declare i of integer datatype. Print “The random number is:”. for (i = 0; i < 10; i++) new_n = ((rand() % (max_n + 1 - min_n)) + min_n) Print the value of new_n. End.
예시
#include <iostream> #include <stdlib.h> using namespace std; int main() { int max_n = 100; int min_n = 1; int new_n; int i; cout<<"The random number is: \n"; for (i = 0; i < 10; i++) { new_n = ((rand() % (max_n + 1 - min_n)) + min_n); //rand() returns random decimal number. cout<<new_n<<endl; } return 0; }
출력
The random number is: 42 68 35 1 70 25 79 59 63 65