摘要:
#include<stdio.h> #include<algorithm> #include<cmath> int judge(int a) { int j; for (j = 2; j <= sqrt(a); j++) { if (a%j == 0) return 1; } return 0; } 阅读全文
posted @ 2017-07-31 11:56
liguangsunls
阅读(499)
评论(0)
推荐(0)