-
Notifications
You must be signed in to change notification settings - Fork 0
/
17.1~1000의 영어 글자 수 구하기.cpp
72 lines (66 loc) · 1.48 KB
/
17.1~1000의 영어 글자 수 구하기.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#include<stdio.h>
#include<string.h>
int main()
{
char num[10][10] = { "","one", "two", "three", "four", "five", "six", "seven","eight","nine" };
char tenth[10][10] = { "ten", "eleven", "twelve", "thirteen", "fourteen","fifteen","sixteen","seventeen","eighteen","nineteen" };
char tenth2[10][10] = { "twenty","thirty","forty", "fifty","sixty", "seventy","eighty", "ninety" };
char hundred[15] = "hundred";
int i, cnt = 0;
for (i = 1; i <= 1000; i++)
{
if (i < 100)
{
if (i < 10)
{
printf("%s\n", num[i]);
cnt += strlen(num[i]);
}
else if (10 <= i && i <= 19)
{
printf("%s\n", tenth[i % 10]);
cnt += strlen(tenth[i % 10]);
}
else
{
printf("%s %s\n", tenth2[i / 10 - 2], num[i % 10]);
cnt += strlen(tenth2[i / 10 - 2]);
cnt += strlen(num[i % 10]);
}
}
if (i >= 100 && i != 1000)
{
printf("%s %s ", num[i / 100], hundred);
cnt += strlen(num[i / 100]);
cnt += 7;
if (i % 100 != 0)
{
printf("and ");
cnt += 3;
}
if (i % 100 < 10)
{
printf("%s\n", num[i % 100]);
cnt += strlen(num[i % 100]);
}
else if (10 <= i % 100 && i % 100 <= 19)
{
printf("%s\n", tenth[i % 10]);
cnt += strlen(tenth[i % 10]);
}
else
{
printf("%s %s\n", tenth2[(i % 100) / 10 - 2], num[i % 10]);
cnt += strlen(tenth2[(i % 100) / 10 - 2]);
cnt += strlen(num[i % 10]);
}
}
if (i == 1000)
{
printf("one thousand\n");
cnt += 11;
}
}
printf("»ç¿ëµÈ ¹®ÀÚ ¼ö : %d", cnt);
return 0;
}