solution/cw3/collatz.while
author Christian Urban <christian.urban@kcl.ac.uk>
Mon, 10 Oct 2022 15:07:31 +0100
changeset 887 d9d52f3e7935
parent 864 b5b1bc0a603b
permissions -rw-r--r--
texupdated

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";