1
2
3
4
5
6
7
8
9
10
11
|
#include <stdio.h>
#include <time.h>
int main(void) {
srand((unsigned int)time(NULL)); // 시드 값 설정
int a = rand() % 10;// 랜덤한 수 0~9
return 0;
}
|
1
2
3
4
5
6
7
8
9
10
11
|
#include <stdio.h>
#include <time.h>
int main(void) {
srand((unsigned int)time(NULL)); // 시드 값 설정
int a = rand() % 10;// 랜덤한 수 0~9
return 0;
}
|
댓글
댓글 쓰기