摘要:
package array; public class Demo01 { public static void main(String[] args) { test(); test3(); } public static void test() { int[] num1;//定义 声明数组 num1 阅读全文
摘要:
package method; /* 可变参数; 不定项;‘ */ public class Demo03 { public static void main(String[] args) { Demo03 demo03 = new Demo03(); demo03.test(1,2,3,4,7,5 阅读全文
摘要:
package method; /** * 阶乘 * <p> * <p> * 1! 1 * 2! 2*1 * 3! 3*2*1 * 5! 5*4*3*2*1 */ public class Demo06 { public static void main(String[] args) { Syste 阅读全文
摘要:
package method; public class Demo04 { public static void main(String[] args) { Demo04 demo04 = new Demo04(); demo04.printMax(456,454,4654.4,6.454,6544 阅读全文
摘要:
package method; public class Demo01 { public static void main(String[] args) { // 实参 int sum = add(1, 4); System.out.println(sum);//5 // int max = max 阅读全文