The program converts given number to individual digits and print words, the program only prints all the digits of a number in just equivalent words, but it is not a meaningful sentence.
Example input:
456
325
-653
Example Output:
Four Five Six
Three Two Five
please enter valid number
The invalid numbers are any special symbols or negative numbers.
The following codes might help you to dig more.
Java Program to Convert Number to Words
Java Program to Find Frequency Count of a Word in Given Text
C Program to Find Number of Characters and Words in a String
Testcase 1:
enter the number :3656 Three Six Five Six
Testcase 2:
enter the number :+6587 Six Five Eight Seven
Testcase 3:
enter the number :-9875 please enter valid number
Testcase 4:
enter the number :6+5+4+8 Six
Test Case 4 encountered a symbol, so the program stops execution with partial result. It is not a number.