-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathElephant.c
60 lines (53 loc) · 1.11 KB
/
Elephant.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
#include <stdio.h>
#include <stdbool.h>
int main()
{
int coordinate, count = 0;
bool flag = true;
scanf("%d", &coordinate);
count = coordinate / 5;
coordinate %= 5;
coordinate != 0
? printf("%d", count + 1)
: printf("%d", count);
return 0;
}
// int main()
// {
// int coordinate, count = 0;
// bool flag = true;
// scanf("%d", &coordinate);
// while (flag)
// {
// if (coordinate >= 5)
// {
// coordinate -= 5;
// count++;
// }
// else if (coordinate >= 4)
// {
// coordinate -= 4;
// count++;
// }
// else if (coordinate >= 3)
// {
// coordinate -= 3;
// count++;
// }
// else if (coordinate >= 2)
// {
// coordinate -= 2;
// count++;
// }
// else
// {
// coordinate -= 1;
// count++;
// }
// if(coordinate == 0){
// flag = false;
// }
// }
// printf("%d", count);
// return 0;
// }