i mean for e.g., numbers are between 1 and 100 .i want to show messagebox for each number as text for example "One" for 1.
is it possible ? anyone help!
i mean for e.g., numbers are between 1 and 100 .i want to show messagebox for each number as text for example "One" for 1.
is it possible ? anyone help!
I wrote a similar program a few years ago. Create a String array with One, Two..Twenty, Thirty, Forty...Hundred
Then with the input number check if <20 just print that array index.
if(num < 20)
print arr[num]
if num>20
print arr[num/10 + 19] + " " + arr[num%10]
I hope you get the drift....