摘要: #include<stdio.h>#include<string.h> int main(void){ int prime(int x); int m,n; int a; int larger=0; for(m=100;m<1000;m++) { for(n=100;n<1000;n++) { a= 阅读全文
posted @ 2017-01-26 13:06 我不随便起名字 阅读(360) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h>int main(void) { int n; scanf("%d",&n); int t=2; while(n>1) { if(n%t==0) { printf("%d\n",t); n=n/t; } else t++; } } 阅读全文
posted @ 2017-01-26 11:32 我不随便起名字 阅读(112) 评论(0) 推荐(0) 编辑