标签:style class blog c code java
void IsPrimeInteger(int n) { if(n < 0) n = 0 - n; int i = 0; while(true) { if((i*i) > n) break; if(n%i == 0) return false; } return true; }
判断一整数是不是质数,布布扣,bubuko.com
判断一整数是不是质数
原文地址:http://www.cnblogs.com/travistang/p/3737398.html