//思路,四位四位处理,字符串处理速度快 #include <iostream> #include<vector> using namespace std; vector<string> nums{"零", "壹", "贰", "叁", "肆", "伍", "陆", "柒", "捌", "玖"}; void printnum(int a) { cout << nums[a]; } void printn(string s) { int n = s.length(); if (n == 1) { printn...