Skip to content

Latest commit

 

History

History
22 lines (13 loc) · 360 Bytes

README-zh_CN.md

File metadata and controls

22 lines (13 loc) · 360 Bytes

语言

English | 简体中文

13195 的质因数为 5、7、13 和 29。

求 600851475143 的最大质因数。

解答

答案:6857

long num = 600851475143L;
return MathUtil.getPrimeFactors(num).lastKey();

研讨

找出所有质因数,并求其最大值。