C语言:输入阿拉伯数字,输出对应英文

Write a program that takes an integer and
displays the Engish name of that value.
You should support both positive and negative numbers, in the range supported by a 32-bit
integer (approximately -2 billion to 2 billion).

Example:
Input: 10
Output: ten

参考这个:


如有帮助,欢迎采纳哈!