高精度求模
Posted 俺叫王梦涵
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了高精度求模相关的知识,希望对你有一定的参考价值。
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; }
以上是关于高精度求模的主要内容,如果未能解决你的问题,请参考以下文章