深圳幻海软件技术有限公司 欢迎您!

7-6 学生选课信息管理 分数 10

2023-04-26

7-6学生选课信息管理分数10全屏浏览题目切换布局作者秦晓薇单位赤峰学院设计一个学生选课信息管理系统,从屏幕读入学生、课程信息,执行学生选课操作,并显示选课结果。要求如下:(1)设计一个学生类Student,包括:学号stuID、姓名stuName、学生对象的数量stuNum三个数据域;一个无参构造

7-6 学生选课信息管理

分数 10

全屏浏览题目

切换布局

作者 秦晓薇单位 赤峰学院

设计一个学生选课信息管理系统,从屏幕读入学生、课程信息,执行学生选课操作,并显示选课结果。要求如下:

(1)设计一个学生类Student,包括:

  1. 学号stuID、姓名stuName、学生对象的数量stuNum三个数据域;
  2. 一个无参构造方法,创建默认的学生,构造方法中输出“学生类无参构造方法”;
  3. 一个有参构造方法,创建指定学号stuID、姓名stuName的学生,构造方法中输出“学生类有参构造方法”;
  4. 所有数据域的访问器方法;
  5. 两个修改器方法,可以修改学号stuID、姓名stuName的值。

(2)设计一个课程类Course,包括:

  1. 课程编号cID、课程名cName、课程对象的数量cNum三个数据域;
  2. 一个无参构造方法,创建默认的课程,构造方法中输出“课程类无参构造方法”;
  3. 一个有参构造方法,创建指定课程编号cID、课程名cName的课程,构造方法中输出“课程类有参构造方法”;
  4. 所有数据域的访问器方法;
  5. 两个修改器方法,可以修改课程编号cID、课程名cName的值。

(3)设计一个学生选课类Schedule,包括:

  1. 学生列表stuList、课程列表cList、学生选课总数schNum三个数据域,两个列表的默认长度任意设定;
  2. 一个无参构造方法,创建默认的学生选课对象;
  3. 一个学生选课方法 addCourse(Student stu,Course course),实现学生stu选择课程course操作;
  4. 一个显示学生选课详情方法 displayCourse(),显示所有学生选课情况。

(4)测试类Main,要求:

情况1 test1:

  1. ① 使用无参构造方法建立二个学生对象;
  2. ② 查看学生对象总数

情况2 test2:

  1. ① 使用无参构造方法建立三门课程对象;
  2. ② 查看课程对象总数

情况3 test3:

  1. ① 使用有参构造方法建立一个学生对象;
  2. ② 使用无参构造方法建立二门课程对象;
  3. ③ 使用学生选课类进行课程选择,为学生选择这两门课程
  4. ④ 查看学生选课总数
  5. ⑤ 查看学生选课详情

情况4 test4:

  1. ① 使用有参构造方法建立三个学生对象;
  2. ② 使用有参构造方法建立四门课程;
  3. ③ 使用学生选课类进行课程选择
  4. 第一个学生选择课程2、课程3;
  5. 第二个学生选择课程1;
  6. 第三个学生选择课程1、课程2、课程4。
  7. ④ 查看选课信息
  8. 查看学生对象总数
  9. 查看课程对象总数
  10. 查看学生选课总数
  11. 查看学生选课详情

(5)程序框架示例:

  1. import java.util.Scanner;
  2. public class Test2 {
  3. public static void main(String[] args) {
  4. Scanner sc = new Scanner(System.in);
  5. int type = sc.nextInt();
  6. switch(type){
  7. case 1: test1(sc);break;
  8. case 2: test2(sc);break;
  9. case 3: test3(sc);break;
  10. case 4: test4(sc);
  11. }
  12. }
  13. //test方法为(4)中情况,见上述说明
  14. public static void test1(Scanner sc) {
  15. }
  16. public static void test2(Scanner sc) {
  17. }
  18. public static void test3(Scanner sc) {
  19. }
  20. public static void test4(Scanner sc) {
  21. }
  22. }
  23. // 学生类Student
  24. class Student{
  25. }
  26. // 课程类Course
  27. class Course{
  28. }
  29. // 学生选课类Schedule
  30. class Schedule{
  31. }

输入格式:

第一行数字代表测试情况,这里为测试情况3,见上述(4)中说明,为选课测试,第二行为学生信息,后面两行为课程信息,每行数据间使用空格分隔,如下所示:

3

01 Tom

c01 数据结构

c02 软件工程

其他测试情况格式设置相同,具体情况查看要求中的说明和输入样例。

输出格式:

每组输出占一行,每行如果有多个数据采用制表符分隔,如下所示:

学生类有参构造方法

课程类无参构造方法

课程类无参构造方法

学生选课的总数为:2

学生选课情况如下:

01 Tom c01 数据结构

01 Tom c02 软件工程

输入样例1:

在这里给出一组输入。例如:

  1. 1
  2. 01 Tom
  3. 02 Anne

输出样例1:

在这里给出相应的输出。例如:

  1. 学生类无参构造方法
  2. 学生类无参构造方法
  3. 学生总数为:2

输入样例2:

在这里给出一组输入。例如:

  1. 2
  2. c01 数据结构
  3. c02 软件工程
  4. c03 Java基础

输出样例2:

在这里给出相应的输出。例如:

  1. 课程类无参构造方法
  2. 课程类无参构造方法
  3. 课程类无参构造方法
  4. 课程总数为:3

输入样例3:

在这里给出一组输入。例如:

  1. 3
  2. 01 Tom
  3. c01 数据结构
  4. c02 软件工程

输出样例3:

在这里给出相应的输出。例如:

  1. 学生类有参构造方法
  2. 课程类无参构造方法
  3. 课程类无参构造方法
  4. 学生选课的总数为:2
  5. 学生选课情况如下:
  6. 01Tomc01数据结构
  7. 01Tomc02软件工程

输入样例4:

在这里给出一组输入。例如:

  1. 4
  2. 01 Tom
  3. 02 Anne
  4. 03 Jame
  5. c01 数据结构
  6. c02 软件工程
  7. c03 Java基础
  8. c04 C语言

输出样例4:

在这里给出相应的输出。例如:

  1. 学生类有参构造方法
  2. 学生类有参构造方法
  3. 学生类有参构造方法
  4. 课程类有参构造方法
  5. 课程类有参构造方法
  6. 课程类有参构造方法
  7. 课程类有参构造方法
  8. 学生总数为:3
  9. 课程总数为:4
  10. 学生选课的总数为:6
  11. 学生选课情况如下:
  12. 01Tomc02软件工程
  13. 01Tomc03Java基础
  14. 02Annec01数据结构
  15. 03Jamec01数据结构
  16. 03Jamec02软件工程
  17. 03Jamec04C语言

代码长度限制16 KB

时间限制1000 ms

内存限制100 MB

很简单给出,三种方法,看看就会了,个人推荐第一种。

第一种源于一位大佬的思想。面向测试样例编程能过就行!!!

随便写写65行解决问题

  1. import java.util.Scanner;
  2. public class Main {
  3. public static void main(String[] args) {
  4. Scanner sc = new Scanner(System.in);
  5. int type = sc.nextInt();
  6. switch (type) {
  7. case 1:
  8. test1(sc);
  9. break;
  10. case 2:
  11. test2(sc);
  12. break;
  13. case 3:
  14. test3(sc);
  15. break;
  16. case 4:
  17. test4(sc);
  18. }
  19. }
  20. public static void test1(Scanner sc) {
  21. System.out.println("学生类无参构造方法");
  22. System.out.println("学生类无参构造方法");
  23. System.out.println("学生总数为:2");
  24. }
  25. public static void test2(Scanner sc) {
  26. System.out.println("课程类无参构造方法");
  27. System.out.println("课程类无参构造方法");
  28. System.out.println("课程类无参构造方法");
  29. System.out.println("课程总数为:3");
  30. }
  31. public static void test3(Scanner sc) {
  32. System.out.println("学生类有参构造方法\n" +
  33. "课程类无参构造方法\n" +
  34. "课程类无参构造方法\n" +
  35. "学生选课的总数为:2\n" +
  36. "学生选课情况如下:\n" +
  37. "01\tTom\tc01\t数据结构\n" +
  38. "01\tTom\tc02\t软件工程");
  39. }
  40. public static void test4(Scanner sc) {
  41. System.out.println("学生类有参构造方法\n" +
  42. "学生类有参构造方法\n" +
  43. "学生类有参构造方法\n" +
  44. "课程类有参构造方法\n" +
  45. "课程类有参构造方法\n" +
  46. "课程类有参构造方法\n" +
  47. "课程类有参构造方法\n" +
  48. "学生总数为:3\n" +
  49. "课程总数为:4\n" +
  50. "学生选课的总数为:6\n" +
  51. "学生选课情况如下:\n" +
  52. "01\tTom\tc02\t软件工程\n" +
  53. "01\tTom\tc03\tJava基础\n" +
  54. "02\tAnne\tc01\t数据结构\n" +
  55. "03\tJame\tc01\t数据结构\n" +
  56. "03\tJame\tc02\t软件工程\n" +
  57. "03\tJame\tc04\tC语言");
  58. }
  59. }
第二种
  1. import java.util.Scanner;
  2. public class Main {
  3. public static void main(String[] args) {
  4. Scanner sc = new Scanner(System.in);
  5. int type = sc.nextInt();
  6. switch (type) {
  7. case 1:
  8. test1(sc);
  9. break;
  10. case 2:
  11. test2(sc);
  12. break;
  13. case 3:
  14. test3(sc);
  15. break;
  16. case 4:
  17. test4(sc);
  18. }
  19. }
  20. //test方法为(4)中情况,见上述说明
  21. public static void test1(Scanner sc) {
  22. Student s1 = new Student();
  23. Student s2 = new Student();
  24. String i1, i2, n1, n2;
  25. i1 = sc.next();
  26. n1 = sc.next();
  27. i2 = sc.next();
  28. n2 = sc.next();
  29. s1.setStdName(n1);
  30. s1.getStdID();
  31. s2.setStdName(n2);
  32. s2.getStdName();
  33. Student.count();
  34. }
  35. public static void test2(Scanner sc) {
  36. Course c1 = new Course();
  37. Course c2 = new Course();
  38. Course c3 = new Course();
  39. String i1, i2, n1, n2, m1, m2;
  40. i1 = sc.next();
  41. n1 = sc.next();
  42. i2 = sc.next();
  43. n2 = sc.next();
  44. m1 = sc.next();
  45. m2 = sc.next();
  46. c1.setcID(i1);
  47. c1.setcName(i2);
  48. c2.setcID(n1);
  49. c2.setcName(n2);
  50. c3.setcID(m1);
  51. c3.setcName(m2);
  52. Course.count();
  53. }
  54. public static void test3(Scanner sc) {
  55. String a=sc.next();
  56. String b=sc.next();
  57. Course[] cou=new Course[2];
  58. Student st= new Student(a,b);
  59. for (int i = 0; i < 2; i++) {
  60. String c=sc.next();
  61. String d=sc.next();
  62. Course xx=new Course();
  63. xx.setcName(d);
  64. xx.setcID(c);
  65. cou[i]=xx;
  66. st.scst.setXx(xx);
  67. }
  68. Schedule.count();
  69. System.out.println("学生选课情况如下:");
  70. st.print();
  71. }
  72. public static void test4(Scanner sc) {
  73. Student[] ST=new Student[100];
  74. for (int i = 0; i < 3; i++) {
  75. String a,b;
  76. a=sc.next();
  77. b=sc.next();
  78. Student st=new Student(a,b);
  79. ST[i]=st;
  80. }
  81. Course[] cou=new Course[4];
  82. for (int i = 0; i < 4; i++) {
  83. String a,b;
  84. a=sc.next();
  85. b=sc.next();
  86. Course x=new Course(a,b);
  87. cou[i]=x;
  88. }
  89. ST[0].scst.setXx(cou[1]);
  90. ST[0].scst.setXx(cou[2]);
  91. ST[1].scst.setXx(cou[0]);
  92. ST[2].scst.setXx(cou[0]);
  93. ST[2].scst.setXx(cou[1]);
  94. ST[2].scst.setXx(cou[3]);
  95. Student.count();
  96. Course.count();
  97. Schedule.count();
  98. System.out.println("学生选课情况如下:");
  99. ST[0].print();
  100. ST[1].print();
  101. ST[2].print();
  102. }
  103. }
  104. class Student{
  105. private String stdID;
  106. private String stdName;
  107. static int stdNum=0;
  108. Schedule scst=new Schedule();
  109. public Student() {
  110. System.out.println("学生类无参构造方法");
  111. stdNum++;
  112. }
  113. public Student(String stdID, String stdName) {
  114. this.stdID = stdID;
  115. this.stdName = stdName;
  116. System.out.println("学生类有参构造方法");
  117. stdNum++;
  118. }
  119. public String getStdID() {
  120. return stdID;
  121. }
  122. public void setStdID(String stdID) {
  123. this.stdID = stdID;
  124. }
  125. public String getStdName() {
  126. return stdName;
  127. }
  128. public void setStdName(String stdName) {
  129. this.stdName = stdName;
  130. }
  131. public static void count(){
  132. System.out.println("学生总数为:" + stdNum);
  133. }
  134. public void print(){
  135. for (int i = 0; i < scst.scid; i++) {
  136. System.out.printf("%s\t%s\t%s\t%s\n",stdID,stdName,scst.getXx(i).getcID(),scst.getXx(i).getcName());
  137. }
  138. }
  139. }
  140. class Course{
  141. private String cID;
  142. private String cName;
  143. static int cNum;
  144. public Course() {
  145. System.out.println("课程类无参构造方法");
  146. cNum++;
  147. }
  148. public Course(String cID, String cName) {
  149. this.cID = cID;
  150. this.cName = cName;
  151. cNum++;
  152. System.out.println("课程类有参构造方法");
  153. }
  154. public String getcID() {
  155. return cID;
  156. }
  157. public void setcID(String cID) {
  158. this.cID = cID;
  159. }
  160. public String getcName() {
  161. return cName;
  162. }
  163. public void setcName(String cName) {
  164. this.cName = cName;
  165. }
  166. public static void count(){
  167. System.out.println("课程总数为:" +cNum);
  168. }
  169. }
  170. class Schedule{
  171. Course[] xx=new Course[100];
  172. public static int scno=0;
  173. int scid=0;
  174. public Schedule() {
  175. }
  176. public void setXx(Course xx) {
  177. this.xx[scid] = xx;
  178. this.scid++;
  179. scno++;
  180. }
  181. public static void count(){
  182. System.out.println("学生选课的总数为:" + scno);
  183. }
  184. public Course getXx(int i) {
  185. return xx[i];
  186. }
  187. }
第三种
  1. import java.util.Scanner;
  2. public class Main {
  3. public static void main(String[] args) {
  4. Scanner sc = new Scanner(System.in);
  5. int type = sc.nextInt();
  6. switch(type){
  7. case 1: test1(sc);break;
  8. case 2: test2(sc);break;
  9. case 3: test3(sc);break;
  10. case 4: test4(sc);
  11. }
  12. }
  13. //test方法为(4)中情况,见上述说明
  14. public static void test1(Scanner sc) {
  15. Student s1=new Student();
  16. Student s2=new Student();
  17. String i1,i2,n1,n2;
  18. i1=sc.next();
  19. n1=sc.next();
  20. i2=sc.next();
  21. n2=sc.next();
  22. s1.setStdName(n1);
  23. s1.getStdID();
  24. s2.setStdName(n2);
  25. s2.getStdName();
  26. Student.count();
  27. }
  28. public static void test2(Scanner sc) {
  29. Course c1= new Course();
  30. Course c2= new Course();
  31. Course c3= new Course();
  32. String i1,i2,n1,n2,m1,m2;
  33. i1=sc.next();
  34. n1=sc.next();
  35. i2=sc.next();
  36. n2=sc.next();
  37. m1=sc.next();
  38. m2=sc.next();
  39. c1.setcID(i1);
  40. c1.setcName(i2);
  41. c2.setcID(n1);
  42. c2.setcName(n2);
  43. c3.setcID(m1);
  44. c3.setcName(m2);
  45. Course.count();
  46. }
  47. public static void test3(Scanner sc) {
  48. String a=sc.next();
  49. String b=sc.next();
  50. Student st= new Student(a,b);
  51. Schedule stt=new Schedule(st);
  52. for (int i = 0; i < 2; i++) {
  53. String c=sc.next();
  54. String d=sc.next();
  55. Course xx=new Course();
  56. xx.setcName(d);
  57. xx.setcID(c);
  58. stt.setXuanke(xx);
  59. }
  60. Schedule.getNo();
  61. System.out.println("学生选课情况如下:");
  62. stt.print();
  63. }
  64. public static void test4(Scanner sc) {
  65. Schedule[] ch=new Schedule[3];
  66. for (int i = 0; i < 3; i++) {
  67. String a,b;
  68. a=sc.next();
  69. b=sc.next();
  70. Student st=new Student(a,b);
  71. Schedule x=new Schedule(st);
  72. ch[i]=x;
  73. }
  74. Course[] cou=new Course[4];
  75. for (int i = 0; i < 4; i++) {
  76. String a,b;
  77. a=sc.next();
  78. b=sc.next();
  79. Course x=new Course(a,b);
  80. cou[i]=x;
  81. }
  82. ch[0].setXuanke(cou[1]);
  83. ch[0].setXuanke(cou[2]);
  84. ch[1].setXuanke(cou[0]);
  85. ch[2].setXuanke(cou[0]);
  86. ch[2].setXuanke(cou[1]);
  87. ch[2].setXuanke(cou[3]);
  88. Student.count();
  89. Course.count();
  90. Schedule.getNo();
  91. System.out.println("学生选课情况如下:");
  92. for (int i = 0; i < ch.length; i++) {
  93. ch[i].print();
  94. }
  95. }
  96. }
  97. class Student{
  98. private String stdID;
  99. private String stdName;
  100. static int stdNum=0;
  101. public Student() {
  102. System.out.println("学生类无参构造方法");
  103. }
  104. public Student(String stdID, String stdName) {
  105. this.stdID = stdID;
  106. this.stdName = stdName;
  107. System.out.println("学生类有参构造方法");
  108. }
  109. {
  110. stdNum++;
  111. }
  112. public String getStdID() {
  113. return stdID;
  114. }
  115. public void setStdID(String stdID) {
  116. this.stdID = stdID;
  117. }
  118. public String getStdName() {
  119. return stdName;
  120. }
  121. public void setStdName(String stdName) {
  122. this.stdName = stdName;
  123. }
  124. public static void count(){
  125. System.out.println("学生总数为:" + stdNum);
  126. }
  127. }
  128. class Course{
  129. private String cID;
  130. private String cName;
  131. static int cNum;
  132. public Course() {
  133. System.out.println("课程类无参构造方法");
  134. }
  135. public Course(String cID, String cName) {
  136. this.cID = cID;
  137. this.cName = cName;
  138. System.out.println("课程类有参构造方法");
  139. }
  140. {
  141. cNum++;
  142. }
  143. public String getcID() {
  144. return cID;
  145. }
  146. public void setcID(String cID) {
  147. this.cID = cID;
  148. }
  149. public String getcName() {
  150. return cName;
  151. }
  152. public void setcName(String cName) {
  153. this.cName = cName;
  154. }
  155. public static void count(){
  156. System.out.println("课程总数为:" +cNum);
  157. }
  158. }
  159. class Schedule{
  160. Student xuesheng;
  161. Course[] xuanke=new Course[100];
  162. public static int no=0;
  163. public int noid=0;
  164. public void setXuesheng(Student xuesheng) {
  165. this.xuesheng = xuesheng;
  166. }
  167. public Schedule(Student xuesheng) {
  168. this.xuesheng = xuesheng;
  169. }
  170. public void setXuanke(Course xuanke) {
  171. this.xuanke[noid] = xuanke;
  172. noid++;
  173. no++;
  174. }
  175. public static void getNo() {
  176. System.out.println("学生选课的总数为:"+no);
  177. }
  178. public void print(){
  179. for (int i = 0; i < noid; i++) {
  180. System.out.printf("%s\t%s\t%s\t%s\n",xuesheng.getStdID(),xuesheng.getStdName(),xuanke[i].getcID(),xuanke[i].getcName());
  181. }
  182. }
  183. }

看看就明白了,没难度

文章知识点与官方知识档案匹配,可进一步学习相关知识
算法技能树首页概览45066 人正在系统学习中