摘要:
#include using namespace std; int M[3] = {23, 28, 33}, A[3], NOW; int exGCD(int a, int b, int &x, int &y) { if (b == 0) { x = 1; y = 0; return a; } int r = e... 阅读全文
posted @ 2008-07-08 09:09
三鲜
阅读(509)
评论(0)
推荐(0)
浙公网安备 33010602011771号