본문 바로가기

Programming/Tip&Informaion

[C++] 난수 랜덤 함수


#include <ctime>        //완전한 난수를 위해서
#include <stdlib.h>    //난수 함수 쓰기 위해서


int main()

{

      srand((unsigned)time(NULL));    //그냥 rand() 쓰면 똑같은 것만 나와서 완전한 난수로 만들기 위해

rand() % 8;                            //0~8 까지의 난수


return 0;

}