Collatz Problem by pooq

var a=readInt*2;while(a>1){a=if(a%2<1)a/2 else 3*a+1;println(a)}

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page