摘要: #include using namespace std; int rand(int m, int n) { static int r; //默认初始值为0 do { r = (25173 * r + 13849) % 65536; } while (r = n); return r; } void add(int,... 阅读全文
posted @ 2019-03-06 23:34 裏表異体 阅读(1012) 评论(0) 推荐(0) 编辑