-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDay4_ForLoop.cpp
58 lines (55 loc) · 1.53 KB
/
Day4_ForLoop.cpp
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
// THE PROBLEM
// ***************************
// For each integer nin the interval [a,b] :
// If 1 <= n <= 9, then print the English representation of it in lowercase. That is "one" for , "two" for , and so on.
// Else if n > 9 and it is an even number, then print "even".
// Else if n > 9 and it is an odd number, then print "odd".
// Solution Created By: Dustin Kaban
// Date: May 30th, 2020
// ***************************
#include <iostream>
#include <cstdio>
using namespace std;
int main() {
// Complete the code.
int a,b;
scanf("%d %d", &a, &b);
for(a; a<=b; a++)
{
if(a >= 1)
{
switch(a)
{
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:
if(a%2 == 0)
{
printf("even\n");
}
else
{
printf("odd\n");
}
break;
}
}
}
return 0;
}