首先处理小于1000的情况,对于大于1000的数字,递归调用处理每一级别。 #include <iostream> #include <sstream> using namespace std; string tens[] = {"", "", "twenty", "thirty", "forty", "fifty", "sixty", "seventy", "eighty", "n...