progs/while-tests/factors.while
author Christian Urban <christian.urban@kcl.ac.uk>
Mon, 29 Aug 2022 08:26:59 +0200
changeset 874 ffe02fd574a5
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
}