solutions/cw2/collatz.while
author Christian Urban <christian.urban@kcl.ac.uk>
Sun, 12 Oct 2025 12:50:16 +0100
changeset 1009 432d027aa6f7
parent 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"