solutions/cw2/factors.while
author Christian Urban <christian.urban@kcl.ac.uk>
Thu, 05 Oct 2023 10:31:05 +0100
changeset 939 f85e784d3014
parent 920 7af2eea19646
permissions -rw-r--r--
updated

// Find all factors of a given input number
// by J.R. Cordy August 2005

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