progs/collatz.while
changeset 147 4725bba8ef26
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/progs/collatz.while	Tue Oct 22 23:17:53 2013 +0100
@@ -0,0 +1,8 @@
+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";