2024年4月18日

摘要: public static void main(String[] args) { System.out.println(f(5)); } public static int f(int n){ if (n==1){ return 1; }else { return n*f(n-1); } } 阅读全文
posted @ 2024-04-18 18:18 anonymity。 阅读(3) 评论(0) 推荐(0) 编辑
 
摘要: public class Demo04 { public static void main(String[] args) { Demo04 demo04 =new Demo04(); demo04.test(1,2,3,4,5); } public void test (int ...i){ Sys 阅读全文
posted @ 2024-04-18 17:50 anonymity。 阅读(3) 评论(0) 推荐(0) 编辑
 
摘要: public class Demo02 { public static void main(String[] args) { double larger =max(10.0,20.0); System.out.println(larger); } public static double max ( 阅读全文
posted @ 2024-04-18 17:03 anonymity。 阅读(5) 评论(0) 推荐(0) 编辑