如何不使用for循環實現數組倒序

在不使用循環的狀況下,要想實現循環的效果,一般能夠用遞歸的方式web public class Test { static int[] a = {1, 2, 3, 4, 5, 6}; public static void main(String[] args) { printArray(a, a.length); } public static
相關文章
相關標籤/搜索