How to find the largest factor of a number using while loops?

2 次查看(过去 30 天)
factor cannot be the number we are testing
  1 个评论
Evan Charlesworth
Evan Charlesworth 2018-11-11
编辑:madhan ravi 2018-11-11
I've gotten this so far, but don't know where to go from here.
largestfactor=n-1;
while largestfactor>0
if mod(n,largestfactor)==0

请先登录,再进行评论。

采纳的回答

Bruno Luong
Bruno Luong 2018-11-11
largestfactor=floor(n/2);
while largestfactor>0
if mod(n,largestfactor)==0
break
end
largestfactor = largestfactor-1;
end

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by