java打印1到10,在java中没有任何循环打印1到10
Interview question:Print 1 to 10 without any loop in java.解决方案Simple way: System.out.println the values:System.out.println(1);System.out.println(2);System.out.println(3);System.out.println(4);System.o...