摘要: 1 int test(long long int a){ 2 if(a<=3) 3 return a; 4 5 for(int i=3; i<a; i++){ 6 if(a%i == 0) 7 return test(a/i); 8 } 9 return a; 10 } 13195 -》29 600 阅读全文
posted @ 2020-06-20 13:51 鱹鱹 阅读(234) 评论(0) 推荐(0) 编辑