欢马劈雪 最近更新时间:2020-01-02 10:19:05
public class CountBothWays { public static void main(String[] args) { /** from nowjava**/ int a, b; for (a = 1, b = 10; a <= 10; a++, b--) System.out.println(a + " " + b); } }