solutions/cw2/collatz.while
author Christian Urban <christian.urban@kcl.ac.uk>
Wed, 25 Oct 2023 13:54:11 +0100
changeset 944 f5d2453c5640
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"