Hey there,
I've made a number to word converter but it is really limited! supporting only 3 digits! But I think I can increase it to 4. We'll see!
Here's the code:
three_digit = "hundred"
there:
input "Enter a number (not higher than 3 digits!)"; a$
print "Higher than 3 digits not supported!!!"
b$ = b$ + "0"
c=c-1
data "zero","one","two","three","four","five","six","seven","eight","nine" data "ten","eleven","twelve","thirteen","fourteen","fifteen","sixteen","seventeen", "eighteen", "nineteen" data "twenty", "thirty", "forty", "fifty", "sixty", "seventy", "eighty", "ninety"
-Prithak