-
Notifications
You must be signed in to change notification settings - Fork 1
/
guess.c
59 lines (41 loc) · 1023 Bytes
/
guess.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
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <string.h>
#include <ctype.h>
#include "utils.h"
#include <time.h>
int main(void)
{
char *name = ask_question_string("Vad heter du?");
int number;
srandom(time(NULL));
int rand = random() % 1024;
int count = 0;
printf("Du %s, jag tänker på ett tal ", name);
number = ask_question_int("kan du gissa vilket?");
while (!(number == rand) && count < 15)
{
if (number > rand)
{
count++;
number = ask_question_int("För stort");
}
else
{
count++;
number = ask_question_int("För litet");
}
}
if (number == rand)
{
count++;
printf("Du gissade rätt, det tog %s %d gissningar att komma fram till %d.\n", name, count, rand);
}
else
{
printf("Du fick slut på gissningar. Talet var %d\n.", rand);
}
return 0;
}