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
#include <stdio.h>
#include <stdlib.h>
int dice() {
return rand() % 6 + 1;
}
void hit_c(char c, int n) {
while (n--)
printf("%c", c);
}
void main() {
int hist[13];
int i;
for (i = 2; i < 13; i++)
hist[i] = 0;
for (i = 0; i < 300; i++)
hist[dice() + dice()]++;
for (i = 2; i < 13; i++) {
printf("%2d:", i);
hit_c('*', hist[i]);
printf("\n");
}
}