-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path조작된주사위_error.cpp
66 lines (57 loc) · 1.04 KB
/
조작된주사위_error.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int setdice1() {
int r = rand() % 100;
if (rand() % 100 > 60) {
return 6;
}
else {
r = rand() % 4 + 2;
return r;
}
}
int setdice2() {
int r = rand() % 100;
if (rand() % 100 > 60) {
return 3;
}
else {
r = rand() % 6 + 1;
return r;
}
}
int main()
{
printf("quiz 1번 : 2071360 이종범\n");
int r1, r2, dice[13] = { 0, };
int i, j, hist;
srand((unsigned)time(NULL));
// 난수 초기화
// 50000 번 동안
int sum;
for (i = 0; i < 50000; i++) {
// 확률이 조작된 주사위 2개 합을 구해 dice[] 값을 증가시킨다.
sum = 0;
r1 = setdice1();
r2 = setdice2();
sum = r1 + r2;
dice[sum - 2]++;
}
// 2~12 값에 대하여
// 발생 빈도 %와 Histogram을 출력한다.
// *의 수는 소숫점이 있으면 +1개 출력한다.
for (i = 0; i < 11; i++) {
double n = dice[i] * 100. / 30000;
printf("%2d : %5.2lf%% ", i + 2, n);
for (int j = 0; j < dice[i] / 300; j++) {
printf("*");
}
if (n != (int)n) {
printf("*");
}
printf("\n");
}
return 0;
}