-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathd2_forloop.c
More file actions
44 lines (42 loc) · 976 Bytes
/
d2_forloop.c
File metadata and controls
44 lines (42 loc) · 976 Bytes
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
//For loop in C
//hackerrank Conditionals
#include<stdio.h>
int main(void)
{
int a,b;
scanf("%d %d",&a,&b);
for(int i=a;i<=b;i++)
{
if(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;
}
}else
{
if(i%2==0)
printf("even\n");
else
printf("odd\n");
}
}
return 0;
}