题解 | #素数判定#
素数判定
http://www.nowcoder.com/practice/5fd9c28b1ce746dd99287a04d8fa9002
#include<iostream> #include<math.h> using namespace std; bool judge(int x) { if(x<2) { return false; } else { for(int i=2; i<=sqrt(x); i++) { if(x%i==0) { return false; } } return true; } } int main() { int n; while(scanf("%d",&n)!=EOF) { if(judge(n)) { printf("yes\n"); } else { printf("no\n"); } } return 0; }