progs/while-tests/factors.while
author Christian Urban <christian.urban@kcl.ac.uk>
Mon, 10 Oct 2022 12:42:06 +0100
changeset 884 183bfb52d26e
parent 824 284ac979f289
permissions -rw-r--r--
fixed bug

// 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
}