-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforLoopInC.c
More file actions
68 lines (62 loc) · 1.27 KB
/
forLoopInC.c
File metadata and controls
68 lines (62 loc) · 1.27 KB
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
#include <stdio.h>
#include <string.h>
#include <math.h>
#include <stdlib.h>
void loop_function(int a, int b)
{
for (int i = a; i <= b; i++)
{
// printf("%d \n", i);
if (i >= 1 && i <= 9)
{
switch (i)
{
case 1:
printf("one\n");
break;
case 2:
printf("two\n");
break;
case 3:
printf("three\n");
break;
case 4:
printf("four\n");
break;
case 5:
printf("five\n");
break;
case 6:
printf("six\n");
break;
case 7:
printf("seven\n");
break;
case 8:
printf("eight\n");
break;
case 9:
printf("nine\n");
break;
default:
break;
}
}
else if (i % 2 == 0)
{
printf("even\n");
}
else
{
printf("odd\n");
}
}
}
int main()
{
int a, b;
scanf("%d\n%d", &a, &b);
// Complete the code.
loop_function(a, b);
return 0;
}