From 85fb7b715dae1dd2b97ee0fd42e2657f11858f06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?5=E5=8F=B7=E6=9E=97=E4=BC=9F=E5=BD=AC?= <2401916501@qq.com> Date: Thu, 22 Dec 2022 00:20:57 +0800 Subject: [PATCH 1/2] =?UTF-8?q?12=E6=9C=8820=E5=8F=B7=E7=AC=94=E8=AE=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...63\350\277\207\345\276\252\347\216\257.md" | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 "05 \346\236\227\344\274\237\345\275\254/20221220 \350\267\263\350\277\207\345\276\252\347\216\257.md" diff --git "a/05 \346\236\227\344\274\237\345\275\254/20221220 \350\267\263\350\277\207\345\276\252\347\216\257.md" "b/05 \346\236\227\344\274\237\345\275\254/20221220 \350\267\263\350\277\207\345\276\252\347\216\257.md" new file mode 100644 index 0000000..ad80094 --- /dev/null +++ "b/05 \346\236\227\344\274\237\345\275\254/20221220 \350\267\263\350\277\207\345\276\252\347\216\257.md" @@ -0,0 +1,21 @@ +# 笔记 + +```java +public class test7 { + public static void main(String[] args) { + int[] [] arr={ + {1,32,6}, + {34,2,12}, + {18,34,64}, + {45,22,62} + }; + System.out.println(arr[1][0]);//输处第二个数组里的第一个值34 + for (int i=0; i Date: Thu, 22 Dec 2022 00:26:29 +0800 Subject: [PATCH 2/2] =?UTF-8?q?12=E6=9C=8820=E5=8F=B7=E7=AC=94=E8=AE=B01?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...63\350\277\207\345\276\252\347\216\257.md" | 26 ++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git "a/05 \346\236\227\344\274\237\345\275\254/20221220 \350\267\263\350\277\207\345\276\252\347\216\257.md" "b/05 \346\236\227\344\274\237\345\275\254/20221220 \350\267\263\350\277\207\345\276\252\347\216\257.md" index ad80094..aef8465 100644 --- "a/05 \346\236\227\344\274\237\345\275\254/20221220 \350\267\263\350\277\207\345\276\252\347\216\257.md" +++ "b/05 \346\236\227\344\274\237\345\275\254/20221220 \350\267\263\350\277\207\345\276\252\347\216\257.md" @@ -18,4 +18,28 @@ public class test7 { } } } -``` \ No newline at end of file +``` + + + + + +## 作业 + +```java +public static void welCome(){ + // 先列出系统的功能 + System.out.println("================================="); + System.out.println("- 欢迎使用大学牲管理系统\t-"); + System.out.println("- \t1.浏览所有学生信息\t\t-"); + System.out.println("- \t2.添加学生信息\t\t-"); + System.out.println("- \t3.修改学生信息\t\t-"); + System.out.println("- \t4.删除学生信息\t\t-"); + System.out.println("- \t5.查询学生信息\t\t-"); + System.out.println("- \t6.退出管理系统\t\t-"); + System.out.println("================================="); + System.out.println("请输入对应数字选择你需要的功能:"); + + } +``` + -- Gitee