luohzzz

导航

2021年4月24日 #

递归

摘要: 递归 package ff;​public class Dome6 { public static void main(String[] args) { System.out.println(f(4)); } public static int f(int n){ if (n==1); return 阅读全文

posted @ 2021-04-24 22:33 luohzzz 阅读(33) 评论(0) 推荐(0) 编辑

可变参数

摘要: 可变参数 package ff;​public class Dome4 { public static void main(String[] args) { Dome4 dome4 = new Dome4(); dome4.test(1);​ } public void test(int...i){ 阅读全文

posted @ 2021-04-24 22:07 luohzzz 阅读(16) 评论(0) 推荐(0) 编辑

方法

摘要: 方法 什么是方法 System.out.println() package ff;​import com.sun.org.apache.xerces.internal.impl.dv.xs.AbstractDateTimeDV;​public class Dome1 {//main方法 public 阅读全文

posted @ 2021-04-24 17:32 luohzzz 阅读(266) 评论(0) 推荐(0) 编辑