Untitled
unknown
plain_text
3 years ago
210 B
10
Indexable
class NumberToWordExample1 {
static void numberToWords(char num[]) {
String[] onedigit = new String[] { "Zero", "One", "Two", "Three", "Four", "Five", "Six", "Seven", "Eight","Nine" };
}
}Editor is loading...