菜鸟的博客

纵有疾风起,人生不言弃。

导航

上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 33 下一页

2023年7月21日 #

2023.7.21 周五:面向对象

摘要: 1 //类 2 public class Student { 3 String name; 4 int age; 5 //使用new关键字,必然会调用构造器 6 public Student(){}//默认构造 7 //有参构造 8 public Student(String name) 9 { 1 阅读全文

posted @ 2023-07-21 18:49 hhmzd233 阅读(5) 评论(0) 推荐(0) 编辑

2023年7月20日 #

2023.7.20 周四:稀疏数组

摘要: 1 import java.sql.SQLOutput; 2 import java.util.Arrays; 3 import java.util.Scanner; 4 //稀疏数组 5 public class test { 6 public static void main(String[] 阅读全文

posted @ 2023-07-20 20:45 hhmzd233 阅读(1) 评论(0) 推荐(0) 编辑

2023年7月19日 #

2023.7.19 周三:冒泡排序

摘要: 1 import java.sql.SQLOutput; 2 import java.util.Arrays; 3 import java.util.Scanner; 4 //冒泡排序 5 public class test { 6 public static void main(String[] 阅读全文

posted @ 2023-07-19 20:03 hhmzd233 阅读(4) 评论(0) 推荐(0) 编辑

2023年7月18日 #

2023.7.18 周二:Arrays类

摘要: 1 import java.sql.SQLOutput; 2 import java.util.Arrays; 3 import java.util.Scanner; 4 //Arrays类 5 public class test { 6 public static void main(String 阅读全文

posted @ 2023-07-18 21:27 hhmzd233 阅读(2) 评论(0) 推荐(0) 编辑

2023年7月17日 #

2023.7.17 周一:多维数组

摘要: 1 import java.sql.SQLOutput; 2 import java.util.Scanner; 3 //多维数组 4 public class test { 5 public static void main(String[] args) { 6 Scanner sc = new 阅读全文

posted @ 2023-07-17 11:29 hhmzd233 阅读(1) 评论(0) 推荐(0) 编辑

2023年7月16日 #

2023.7.16

摘要: 1 import java.sql.SQLOutput; 2 import java.util.Scanner; 3 //数组的使用 4 public class test { 5 public static void main(String[] args) 6 { 7 int[] arrays = 阅读全文

posted @ 2023-07-16 18:10 hhmzd233 阅读(4) 评论(0) 推荐(0) 编辑

2023年7月15日 #

2023.7.15

摘要: 1 //2023.7.15 周六 2 //数组 3 public class test { 4 public static void main(String[] args) 5 { 6 int[] array = new int[10];//数组的定义 7 //数组不赋值,默认值为0 8 int a 阅读全文

posted @ 2023-07-15 08:00 hhmzd233 阅读(27) 评论(0) 推荐(0) 编辑

2023年7月14日 #

2023.7.14

摘要: 1 2023.7.14 周五 2 //递归:适用于基数bi'ji 3 public class test 4 { 5 public static void main(String[] args) 6 { 7 8 System.out.println(f(5)); 9 } 10 public stat 阅读全文

posted @ 2023-07-14 20:18 hhmzd233 阅读(54) 评论(0) 推荐(0) 编辑

2023年7月13日 #

2023.7.13

摘要: 1 //2023.7.13 周四 2 //可变参数 3 //参数类型 ... 参数名 4 //!!!!一个方法中最多可以指定一个可变参数,且只能作为最后一个参数,例:public static void test(int x,double...c) 5 public class test 6 { 7 阅读全文

posted @ 2023-07-13 20:49 hhmzd233 阅读(25) 评论(0) 推荐(0) 编辑

2023年7月12日 #

2023.7.12

摘要: 1 //2023.7.12 周三 2 //方法声明和调用 3 public class test 4 { 5 public static void main(String[] args) 6 { 7 int sum = add(1,2); 8 System.out.println(sum); 9 } 阅读全文

posted @ 2023-07-12 19:41 hhmzd233 阅读(32) 评论(0) 推荐(0) 编辑

上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 33 下一页