-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproblem 1
73 lines (63 loc) · 1009 Bytes
/
problem 1
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
69
70
71
72
73
#include <assert.h>
#include <limits.h>
#include <math.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main()
{
int a;
scanf("%d",&a);
if(a==1)
{
printf("one");
}
else
if(a==2)
{
printf("two");
}
else
if(a==3)
{
printf("three");
}
else
if(a==4)
{
printf("four");
}
else
if(a==5)
{
printf("five");
}
else
if(a==6)
{
printf("six");
}
else if(a==7)
{
printf("seven");
}
else
if(a==8)
{
printf("eight");
}
else
if(a==9)
{
printf("nine");
}
else
if(a>9)
{
printf("Greater than 9");
}
return 0;
}