标签:
高精度取余
1、高精度取单精度
int hmod(string a,int b)//高精度取余单精度 输出余数 { int temp=0; unsigned long len=a.length(); for(int i=0;i<len;i++) temp=(temp*10+a[i]-‘0‘)%b; return temp; }
高精度模板总结
原文地址:http://www.cnblogs.com/LukeStepByStep/p/5773830.html