Hint: to correct the program you need to add another swapping of values between variables one and two.
Submit the corrected program to the subversion repository.
Hint: input the numbers as two variables of type char, then create output using several switch and if statements. Specifically, you will need to differentiate (with an if) a number that is less than 20. For such numbers you will need a switch statement to print the whole value. For the numbers larger than 20, you will need one switch to print the word for the first digit, and another -- for the word of the second digit.
That is, the outline of your program could be as follows:
if(first character is equal to '1') switch that recognizes the second character (second digit) and prints the whole number "ten", "eleven", or ... else switch that recognizes the first digit and prints "twenty" or "thirty", or . .. then switch that recognizes the second digit and prints "one" or "two", or ...
Make sure you program adheres to proper programming style. Submit your project to the subversion repository.