-
Notifications
You must be signed in to change notification settings - Fork 0
/
roll.c
80 lines (64 loc) · 1.26 KB
/
roll.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
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int a, r, n, f; //a = variabile di scelta, r = numero random, n = numero di lanci, f = numero di facce
static int c = 0; // c = somma dei numeri
int b = 0; // b = numero inserito manualmente
void exit();
int uno()
{
puts("");
scanf("%d", &b);
c = c + b;
return c;
}
int due()
{
puts("\nQuanti lanci vuoi fare?\n");
scanf("%d", &n);
puts("");
for (int i = 0; i < n; ++i)
{
printf("Lancio %d, inserire il numero di facce del dado:\n\n", i+1);
scanf("%d", &f);
puts("");
r = rand()% f;
c = c + r + 1;
}
return c;
}
void tre ()
{
printf("\n**************************\nLa somma dei valori è: %d\n**************************\n\n", c);
}
void quattro()
{
printf("\n**************************\nLa somma dei valori è: %d\n**************************\n\n", c);
exit(1);
}
int main ()
{
time_t t;
srand((unsigned) time(&t));
do
{
puts("\nScegliere se:\n\n1) Inserire valore (e sommare al precedente)\n\n2) Tirare un dado (e sommare al precedente)\n\n3) Mostrare il risultato\n\n4) Termina il programma\n\n");
scanf("%1d", &a);
switch (a)
{
case 1:
uno();
break;
case 2:
due();
break;
case 3:
tre();
break;
case 4:
quattro();
break;
}
}
while (a != 4);
}