Collatz Problem by nattow

class Z{static{for(int i=new java.util.Scanner(System.in).nextInt();;i=i%2<1?i/2:3*i+1){System.out.println(i);if(i<2)break;}}}

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

download

return to the top page