1
Good night.
I’m doubting how and where to start the following algorithm:
Write an algorithm that in c that receives a check number and writes the equivalent word. For example, the value 112.43 must be written as CENTO E DOZE E 43/100
Please don’t tell me the answer, but give me a path where I can start.
Make special treatment for the values from 1 to 19. Divide the number into figures according to the position and apply the number of each digit. A good solution is table of units, tens and hundreds, beyond 1 to 19.
– anonimo
Thanks, now I know where to start.
– Alberto_Santos
If you’re having doubts, that answer satisfies your question. I know you did not want the answer but rather a help, well, this answer is very detailed and I assure you will be of good help. :)
– WhoisMatt
Possible duplicate of How to write a number in full in C Language?
– sant0will