-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdemo 2.cpp
More file actions
52 lines (52 loc) · 1.17 KB
/
Copy pathdemo 2.cpp
File metadata and controls
52 lines (52 loc) · 1.17 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
#include <stdio.h>
int main()
{
int n, num = 0,k=0;
printf("Enter any number to print in words: ");
scanf("%d", &n);
for(int i=n;i>0;i=i/10)
k++;
printf("\n%d",k);
while(n != 0)
{
num = (num * 10) + (n % 10);
n = n/10;
}
while(num != 0)
{
switch(num % 10)
{
case 0:
printf("Zero ");
break;
printf("One ");
break;
case 2:
printf("Two ");
break;
case 3:
printf("Three ");
break;
case 4:
printf("Four ");
break;
case 5:
printf("Five ");
break;
case 6:
printf("Six ");
break;
case 7:
printf("Seven ");
break;
case 8:
printf("Eight ");
break;
case 9:
printf("Nine ");
break;
}
num = num / 10;
}
return 0;
}