solution/cw3/collatz.while
author Christian Urban <christian.urban@kcl.ac.uk>
Sun, 09 Oct 2022 21:39:08 +0100
changeset 883 740bb9557905
parent 864 b5b1bc0a603b
permissions -rw-r--r--
updated

write "Input a number ";
read n;
while n > 1 do {
  if n % 2 == 0 
  then n := n/2 
  else n := 3*n+1;
};
write "Yes\n";