摘要:
public class Test{ public static void main(String[] args){ int[] arr = {1,3,5,2,4,8,6}; for(int i = 0; i < arr.length -1; i++){ for(int j = 0; j < arr 阅读全文
摘要:
例题: 求数列1,1,2,3,5,8,……第42位数。 public Class Test{ public static void main(String[] args){ System.out.println(func(42)); } public static int func(int n){ 阅读全文