progs/while-tests/collatz.while
author update
Mon, 05 Oct 2020 17:46:12 +0100
changeset 774 42733adf2a48
parent 742 b5b5583a3a08
child 804 387240957c3d
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";