首页 > 代码库 > 高精度求模

高精度求模

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;}

 

高精度求模