progs/primes.while
author Christian Urban <christian.urban@kcl.ac.uk>
Mon, 27 Jul 2020 11:02:48 +0100
changeset 741 e66bd5c563eb
parent 674 e0a41a1f24cf
permissions -rw-r--r--
updated

// prints out prime numbers from
// 2 to 100 (end)

end := 100;
n := 2;
while (n < end) do {
  f := 2;
  tmp := 0;
  while ((f < n / 2 + 1) && (tmp == 0)) do {
    if ((n / f) * f == n) then  { tmp := 1 } else { skip };
    f := f + 1
  };
  if (tmp == 0) then { write(n) } else { skip };
  n  := n + 1
}