progs/while-tests/factors.while
author Christian Urban <christian.urban@kcl.ac.uk>
Tue, 31 Oct 2023 12:52:36 +0000
changeset 952 33b3e790e1d4
parent 824 284ac979f289
permissions -rw-r--r--
updated

// Find all factors of a given input number


write "Input n please";
read n;
write "The factors of n are";
f := 2;
while (f < n / 2 + 1) do {
  if ((n / f) * f == n) then  { write(f) } else { skip };
  f := f + 1
}