This is what it say in the book:
How can I do this without using arrays? I'm using Objective-C.
Write a program that takes an integer keyed in from the terminal and extracts and displays each digit of the integer in English. So, if the user types in 932, the program should display the following:
nine three two
(Remember to display zero if the user types in just a 0.) Note: This exercise is a hard one!
How can I do this without using arrays? I'm using Objective-C.