Computer Science, asked by mshariq78621, 9 months ago

w.a.p to input a no. and print its digits in words​

Answers

Answered by Zisha7
0

Answer:

Step by step descriptive logic to convert number in words.

Input number from user. ...

Extract last digit of given number by performing modulo division by 10. ...

Switch the value of digit found above. ...

Remove last digit from num by dividing it by 10 i.e. num = num / 10 .

Repeat step 2 to 4 till number becomes 0

Similar questions