Click here to Skip to main content
15,895,709 members

Response to: how to print string, if i input "1" then print "One", if i input "15" then print "fifteen", if i input "123" then print "one hundred and twenty-three "

Revision 2
If you want to "show" it in a Console so just use:
C#
string Number = Console.readLine();
and then some if-questions like:

if(Number.Equals("1")){
Console.WriteLine("one")
}

if(Number.Equals("123")){
Console.WriteLine("onehundreed and twenty-three")
}


i cant think of another possible Method

but deep in my brain theres a thought that there was a guy who hardcoded it ...
he added always read the first number like in 900 so its nine
and then he counted the numbers after that ... or so... if you google it im sure you will find it :D
Posted 15-Nov-12 21:54pm by David Goebet.
Tags: ,