-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFor_Loop.c
More file actions
50 lines (42 loc) · 1.01 KB
/
For_Loop.c
File metadata and controls
50 lines (42 loc) · 1.01 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
#include <stdio.h>
#include <string.h>
#include <math.h>
#include <stdlib.h>
int main()
{
int a, b;
scanf("%d\n%d", &a, &b);
if(a > b)
{
a = a + b;
b = a - b;
a = a - b;
}
for(int n = a; n <= b; n++)
{
if((n >= 1) && (n <= 9))
{
switch(n)
{
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;
}
}
else if((n % 2) == 1)
{
printf("odd\n");
}
else if((n % 2) == 0)
{
printf("even\n");
}
}
return 0;
}