z*y
1 楼
给定一个范围1 - 1,000,000,000的整数,写出它的英文表示
比如:1234 = one thousand two hundred thirty four
为简化起见,不考虑使用"and"或者hyphen
假设有这样一本字典,收录了这10亿个数字的英文表示并按字母序排列
写出函数:int number2order(int num),即数字n的英文表示在此序列中的位置
和它的反函数:int order2number(int ord)
比如:1234 = one thousand two hundred thirty four
为简化起见,不考虑使用"and"或者hyphen
假设有这样一本字典,收录了这10亿个数字的英文表示并按字母序排列
写出函数:int number2order(int num),即数字n的英文表示在此序列中的位置
和它的反函数:int order2number(int ord)