solutions/cw2/collatz.while
author Christian Urban <christian.urban@kcl.ac.uk>
Fri, 04 Nov 2022 12:07:40 +0000
changeset 894 02ef5c3abc51
parent 864 solution/cw2/collatz.while@b5b1bc0a603b
child 920 7af2eea19646
permissions -rw-r--r--
updatedHG: added solutions/cw5/fun_tokens.sc

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