C++로 랜덤 숫자 만들기
#include <time.h>

int randomValue() {
	srand((unsigned int)time(NULL));
	return (rand() % 100);
}