摘要: #include<stdio.h>#include<math.h>int isSuShu(int n)//判断一个数是不是素数{ int i; for(i=2;i<=(int)sqrt(n);i++) { if(n%i==0) { return 0; } } return 1;}int main() 阅读全文
posted @ 2016-06-24 22:16 胡卫雄 阅读(5179) 评论(0) 推荐(0) 编辑