Project Euler 3
Posted jerryberry
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Project Euler 3相关的知识,希望对你有一定的参考价值。
Problem 3
The prime factors of 13195 are 5, 7, 13 and 29.
What is the largest prime factor of the number 600851475143 ?
Solve:
clear
clc
t = input(‘pelase input the number:‘); %输入任意一个正整数
for i = 2:t-1
while mod(t,i) == 0
t = t/i;
end
if t == 1;
a = i;
break
end
end
fprintf(‘The answer is %.0d\n‘,a)
以上是关于Project Euler 3的主要内容,如果未能解决你的问题,请参考以下文章