Computer Science, asked by jayantimahata064, 2 days ago

write a program using switch case to accept an integers and print the last digit in words
input- 47,93,81
output- seven in words, three,one​

Answers

Answered by p963096
0

Answer:

Input number from user. Store it in some variable say num .

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