solutions/cw2/collatz.while
author Christian Urban <christian.urban@kcl.ac.uk>
Mon, 05 Jun 2023 10:50:36 +0100
changeset 912 e32802acf952
parent 894 02ef5c3abc51
child 920 7af2eea19646
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";