求C语言的阿拉伯数字转为其对应英文单词的完整代码 如123 转为one hundred twenty three.
问题描述:
求C语言的阿拉伯数字转为其对应英文单词的完整代码 如123 转为one hundred twenty three.
答
#include<stdio.h>#include <stdlib.h>void main(){ char *Eng1[20]={"zero","one","two","three","four","five","six","seven",  ...