摘要: #include<stdio.h>int test(int x){ int i=1; for(i=1;i<x;i++){ if(x%i==0&&x>2) return 0; else return 1; } }int main(){ int test(int x); int b; printf("输 阅读全文
posted @ 2018-06-30 17:06 许九成 阅读(34373) 评论(0) 推荐(0) 编辑