-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEnt2_Dados.c
82 lines (75 loc) · 1.35 KB
/
Ent2_Dados.c
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#include<stdio.h>
#include<stdlib.h>
#include<time.h>
#define NUM_MAX 6
#define NUM_MIN 1
void IMP_UNO(void){
printf("| |\n"
"| * |\n"
"| |\n"
"\n");
}
void IMP_DOS(void){
printf("| *|\n"
"| |\n"
"|* |\n"
"\n");
}
void IMP_TRES(void){
printf("|* |\n"
"| * |\n"
"| *|\n"
"\n");
}
void IMP_CUATRO(void){
printf("|* *|\n"
"| |\n"
"|* *|\n"
"\n");
}
void IMP_CINCO(void){
printf("|* *|\n"
"| * |\n"
"|* *|\n"
"\n");
}
void IMP_SEIS(void){
printf("|* *|\n"
"|* *|\n"
"|* *|\n"
"\n");
}
int Aleatorio_entero(int a,int b){
return a + rand() % b;
}
void Dado (void){
switch (Aleatorio_entero(NUM_MIN,NUM_MAX)){
case 1:
IMP_UNO();
break;
case 2:
IMP_DOS();
break;
case 3:
IMP_TRES();
break;
case 4:
IMP_CUATRO();
break;
case 5:
IMP_CINCO();
break;
case 6:
IMP_SEIS();
break;
}
}
int main (){
int i;
srand( time( NULL ) );
/*Simulo 6 tiros del dado*/
for(i=0;i<=6;i++){
Dado();
}
return EXIT_SUCCESS;
}