0
1
38
168
556
135
cpp>//简单的高精度摸除,模除过程从个位开始,算当前位有 //个指针指向下一位 #include #include #include using namespace std; //模除函数 int high_mod(string a,int b) { string result; int temp = a[0] - '0'; int s = 1; go_on: ...