C/Reference

[C] 난수 생성

MoongStory 2024. 12. 20. 15:47
반응형
#include <stdio.h>
#include <time.h>

srand((unsigned int)time(NULL)); // 이 코드는 함수에 한번만 써주면 됨

num = rand() % 100 ; // 0~99의 난수를 생성

num = rand() % 10; // 0~9의 난수를 생성
반응형