有人可以向我解释为什么会打印出 1 2 3 4 5 吗?我认为它会打印出 4 3 2 1 0 但我的书和日食都说我错了。
public class whatever {
/**
* @param args
*/
public static void main(String[] args) {
xMethod(5);
}
public static void xMethod(int n){
if (n>0){
xMethod(n-1);
System.out.print(n + " ");
}
}
}