摘要:
#include #include #include #include #include #include #include using namespace std; int extend_gcd(int a, int b, int &x, int &y) { if (b == 0) { x = 1, y = 0; return a; ... 阅读全文
posted @ 2017-04-21 23:22
NWU_ACM
阅读(136)
评论(0)
推荐(0)
浙公网安备 33010602011771号