标签:.com 次方 int www mat com div 不同的 math
看了园子里一个随笔
http://www.cnblogs.com/10158wsj/p/7050736.html
系数怎么来的呢?
2^7%11-2^6%11-2^5%11 ......
2的7654321098754321次方%11得到
从最后一位向前,
int m = 0; for (int i = 16;i>-1;i--) { m += (sfz[i] - ‘0‘) * ((int)Math.Pow(2,(17-i)) % 11); } Console.WriteLine(m.ToString() + "," +(12 - m%11).ToString());
标签:.com 次方 int www mat com div 不同的 math
原文地址:http://www.cnblogs.com/zhiming99/p/7053391.html