Filter löschen
Filter löschen

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

2 Ansichten (letzte 30 Tage)
factor cannot be the number we are testing
  1 Kommentar
Evan Charlesworth
Evan Charlesworth am 11 Nov. 2018
Bearbeitet: madhan ravi am 11 Nov. 2018
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

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

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

Weitere Antworten (0)

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by