solutions/cw3/collatz.while
author Christian Urban <christian.urban@kcl.ac.uk>
Mon, 20 Oct 2025 22:18:21 +0200
changeset 1013 1a23d87d1700
parent 905 15973df32613
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"