摘要: 快速幂取模运算 1 #include <iostream> 2 using namespace std; 3 4 int main() 5 { 6 int a, b, c; 7 long long ans = 1, base = a; 8 9 a %= c; 10 while (b) { 11 if 阅读全文
posted @ 2017-05-13 08:24 whileskies 阅读(438) 评论(0) 推荐(0) 编辑