int _IsPrimer(int n) { for (int i=2; i<=sqrt(n); i++) { if (n % i == 0) { return 0; } } return 1; }
[此贴子已经被作者于2016-4-24 10:59编辑过]