摘要: 1 #include<iostream> 2 #include<cmath> 3 using namespace std; 4 5 // print all prime factor 6 void print(int n) 7 { 8 // 将n除成奇数 9 while(n%2==0) 10 { 1 阅读全文
posted @ 2021-08-18 19:42 细妹 阅读(202) 评论(0) 推荐(0)