-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchap_08_d.rb
181 lines (147 loc) · 5.01 KB
/
chap_08_d.rb
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
=begin
How about weddingNumber? It should work almost the same as englishNumber, except
that it should insert the word "and" all over the place, returning things like
'nineteen hundred and seventy and two', or however wedding invitations are
supposed to look. I'd give you more examples, but I don't fully understand it
myself. You might need to contact a wedding coordinator to help you.
=end
def weddingNumber number
if number < 0 # No negative numbers.
return 'Please enter a number that isn\'t negative.'
end
if number == 0
return 'zero'
end
# No more special cases! No more returns!
numString = '' # This is the string we will return.
onesPlace = ['one', 'two', 'three', 'four', 'five',
'six', 'seven', 'eight', 'nine']
tensPlace = ['ten', 'twenty', 'thirty', 'forty', 'fifty',
'sixty', 'seventy', 'eighty', 'ninety']
teenagers = ['eleven', 'twelve', 'thirteen', 'fourteen', 'fifteen',
'sixteen', 'seventeen', 'eighteen', 'nineteen']
# "left" is how much of the number we still have left to write out.
# "write" is the part we are writing out right now.
# write and left... get it? :)
left = number
#quadrillions
write = left/1000000000000000
left = left - write*1000000000000000
if write > 0
quadrillions = weddingNumber write
numString = numString + quadrillions + ' quadrillion'
if left > 0
numString = numString + ' and '
end
end
#trillions
write = left/1000000000000
left = left - write*1000000000000
if write > 0
trillions = weddingNumber write
numString = numString + trillions + ' trillion'
if left > 0
numString = numString + ' and '
end
end
#billions
write = left/1000000000
left = left - write*1000000000
if write > 0
billions = weddingNumber write
numString = numString + billions + ' billion'
if left > 0
numString = numString + ' and '
end
end
#millions
write = left/1000000
left = left - write*1000000
if write > 0
millions = weddingNumber write
numString = numString + millions + ' million'
if left > 0
numString = numString + ' and '
end
end
#thousands
write = left/1000
left = left - write*1000
if write > 0
thousands = weddingNumber write
numString = numString + thousands + ' thousand'
if left > 0
numString = numString + ' and '
end
end
write = left/100 # How many hundreds left to write out?
left = left - write*100 # Subtract off those hundreds.
if write > 0
# Now here's a really sly trick:
hundreds = weddingNumber write
numString = numString + hundreds + ' hundred'
# That's called "recursion". So what did I just do?
# I told this method to call itself, but with "write" instead of
# "number". Remember that "write" is (at the moment) the number of
# hundreds we have to write out. After we add "hundreds" to
# "numString", we add the string ' hundred' after it.
# So, for example, if we originally called englishNumber with
# 1999 (so "number" = 1999), then at this point "write" would
# be 19, and "left" would be 99. The laziest thing to do at this
# point is to have englishNumber write out the 'nineteen' for us,
# then we write out ' hundred', and then the rest of
# englishNumber writes out 'ninety-nine'.
if left > 0
# So we don't write 'two hundredfifty-one'...
numString = numString + ' and '
end
end
write = left/10 # How many tens left to write out?
left = left - write*10 # Subtract off those tens.
if write > 0
if ((write == 1) and (left > 0))
# Since we can't write "tenty-two" instead of "twelve",
# we have to make a special exception for these.
numString = numString + teenagers[left-1]
# The "-1" is because teenagers[3] is 'fourteen', not 'thirteen'.
# Since we took care of the digit in the ones place already,
# we have nothing left to write.
left = 0
else
numString = numString + tensPlace[write-1]
# The "-1" is because tensPlace[3] is 'forty', not 'thirty'.
end
if left > 0
# So we don't write 'sixtyfour'...
numString = numString + '-'
end
end
write = left # How many ones left to write out?
left = 0 # Subtract off those ones.
if write > 0
numString = numString + onesPlace[write-1]
# The "-1" is because onesPlace[3] is 'four', not 'three'.
end
# Now we just return "numString"...
numString
end
puts weddingNumber( 0)
puts weddingNumber( 9)
puts weddingNumber( 10)
puts weddingNumber( 11)
puts weddingNumber( 17)
puts weddingNumber( 32)
puts weddingNumber( 88)
puts weddingNumber( 99)
puts weddingNumber(100)
puts weddingNumber(101)
puts weddingNumber(234)
puts weddingNumber(3211)
puts weddingNumber(999999)
puts weddingNumber(1000000000000)
puts ''
puts weddingNumber(1000)
puts weddingNumber(1000000)
puts weddingNumber(1000000000)
puts weddingNumber(1000000000000)
puts weddingNumber(100000000000000)