-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIntegerToEnglish.java
More file actions
37 lines (34 loc) · 1.22 KB
/
Copy pathIntegerToEnglish.java
File metadata and controls
37 lines (34 loc) · 1.22 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
public class IntegerToEnglish {
private final String[] ZERO_TO_TWENTY = { "", "One", "Two", "Three", "Four", "Five", "Six", "Seven", "Eight",
"Nine", "Ten", "Eleven", "Twelve", "Thirteen", "Fourteen", "Fifteen", "Sixteen", "Seventeen", "Eighteen",
"Nineteen" };
private final String[] TENS = { "", "Ten", "Twenty", "Thirty", "Forty", "Fifty", "Sixty", "Seventy", "Eighty",
"Ninety" };
private final String[] THOUSANDS = { "", "Thousand", "Million", "Billion" };
public String numberToWords(int num) {
if (num == 0) {
return "Zero";
}
int i = 0;
String word = "";
while (num > 0) {
if (num % 1000 != 0) {
word = helper(num % 1000) + THOUSANDS[i] + " " + word;
}
num /= 1000;
i++;
}
return word.trim();
}
String helper(int num) {
if (num == 0) {
return "";
} else if (num < 20) {
return ZERO_TO_TWENTY[num] + " ";
} else if (num < 100) {
return TENS[num / 10] + " " + helper(num % 10);
} else {
return ZERO_TO_TWENTY[num / 100] + " Hundred " + helper(num % 100);
}
}
}