본문 바로가기
C++

c++ 난수 생성

by 자유코딩 2017. 9. 14.

#include <iostream>

#include <ctime>

#include <cstdlib>

using namespace std;

void main()

{

int rannum;

srand((unsigned)time(NULL));

cout << rand()%20<< endl;

}

 

'C++' 카테고리의 다른 글

C++ MFC 윈도우 프로그램 예제  (0) 2018.11.22
MFC 시작하기  (0) 2018.11.17
-> 연산자와 구조체  (0) 2017.09.14
Visual Studio 2015에서 scanf , strcpy 함수 등의 에러 해결  (0) 2017.09.12

댓글