2025年7月24日
摘要: void divide(int x) { for (int i = 2; i <= x / i; i ++ ) if (x % i == 0) { int s = 0; while (x % i == 0) x /= i, s ++ ; cout << i << ' ' << s << endl; 阅读全文
posted @ 2025-07-24 00:14 下头小美 阅读(3) 评论(0) 推荐(0)