RT,楼主用的是 C++,一开始直接用 int 存,发现不对,后来改为 long long,还是不对 最后用字符串模拟减法,也只得到了 0.91,这道题写了好久,心态崩了。。 有朋友能检查检查我的代码么: #include <iostream> #include <cstring> #include <cstdio> #include <algorithm> using namespace std; bool cmp(string a, string b) { if (a.length() > b.length()) ...