- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章java实现学生选课系统由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
本文为大家分享了java实现学生选课系统的具体代码,供大家参考,具体内容如下 。
案例要求:
学生(学号,姓名,专业,所选课程{<3}) 老师(工号,姓名,所教课程{<3}) 课程(课程号,课程名,学分,教师,已选课学生{<30}) 。
选课系统代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
//teacher
public
class
teacher {
private
int
id;
private
string teachername;
private
course[] courses;
//构造函数
public
teacher() {
super
();
courses=
new
course[
3
];
}
public
teacher(
int
id,string teachername){
this
.id=id;
this
.teachername=teachername;
courses =
new
course[
3
];
}
//修改或是添加属性
public
int
getid() {
return
id;
}
public
void
setid(
int
id) {
this
.id = id;
}
public
string getteachername() {
return
teachername;
}
public
void
setteachername(string teachername) {
this
.teachername = teachername;
}
}
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
|
/**
* 课程
*/
public
class
course {
private
string coursename;
private
int
courseid;
private
teacher teacher;
private
float
credit;
private
student[] students;
//构造函数
public
course(
int
courseid,string coursename,
float
credit,teacher teacher) {
super
();
this
.courseid=courseid;
this
.coursename=coursename;
this
.credit=credit;
this
.setteacher(teacher);
students =
new
student[
30
];
}
public
course(
int
courseid,string coursename,
float
credit) {
super
();
this
.courseid=courseid;
this
.coursename=coursename;
this
.credit=credit;
students =
new
student[
30
];
}
public
course(
int
courseid,string coursename) {
super
();
this
.courseid=courseid;
this
.coursename=coursename;
students =
new
student[
30
];
}
public
course() {
//默认形式,要有以防万一
super
();
students =
new
student[
30
];
}
//修改或获取属性值id,name,credit,
public
void
setid(
int
id){
this
.courseid=id;
}
public
int
getid(){
return
this
.courseid;
}
public
void
setname(string name){
this
.coursename=name;
}
public
string getname(){
return
this
.coursename;
}
public
void
setcredit(
float
credit ){
this
.credit=credit;
}
public
float
getcredit(){
return
this
.credit;
}
public
teacher getteacher() {
return
teacher;
}
public
void
setteacher(teacher teacher) {
this
.teacher = teacher;
}
//课加入学生
public
boolean
addstudent(student stu){
boolean
flag =
false
;
//标志值:是否加入成功
//如果学生没有选过这门课,同时课的学生还没满则执行
if
(!isselectedstudent(stu)&&isnullstudent(stu)){
for
(
int
i=
0
;i<students.length;i++){
if
(students[i]==
null
){
students[i]=stu;
flag=
true
;
break
;
}
}
}
return
flag;
}
//课移除学生
public
boolean
removestudent(student stu){
boolean
flag=
false
;
if
(isselectedstudent(stu)){
//选过这门课
for
(
int
i=
0
;i<students.length;i++){
if
(students[i]==stu){
students[i]=
null
;
flag=
true
;
break
;
}
}
}
return
flag;
}
//显示选择课程的学生:
public
void
displaystudent(){
system.out.println(
"选择的课程:"
+
this
.coursename+
"的学生有:"
);
for
(student s:students){
if
(s!=
null
){
system.out.print(s.getstuname()+
" "
);
}
}
system.out.println();
}
//子方法1:学生是否选过这门课
public
boolean
isselectedstudent(student stu){
boolean
flag=
false
;
for
(student s:students){
//只能用于检查,不能修改
if
(s==stu){
flag=
true
;
break
;
}
}
return
flag;
}
//子方法2:学科学生未达到限定人数吗
public
boolean
isnullstudent(student stu){
boolean
flag=
false
;
for
(student s:students){
if
(s==
null
){
//还有空位
flag=
true
;
break
;
}
}
return
flag;
}
public
static
void
main(string[] args) {
// todo auto-generated method stub
}
}
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
/**
* 学生代码
* @author floris0811
*/
public
class
student {
private
string stuname;
private
int
stuid;
private
string major;
private
course[] courses;
//构造函数
public
student() {
//不要忘
super
();
courses =
new
course[
3
];
}
public
student(
int
stuid,string stuname) {
super
();
this
.stuid=stuid;
this
.stuname=stuname;
courses =
new
course[
3
];
}
public
student(
int
stuid,string stuname,string major) {
super
();
this
.stuid=stuid;
this
.stuname=stuname;
this
.major = major;
courses =
new
course[
3
];
}
//修改获取属性name,id,major
public
string getstuname() {
return
stuname;
}
public
void
setstuname(string stuname) {
this
.stuname = stuname;
}
public
int
getstuid() {
return
stuid;
}
public
void
setstuid(
int
stuid) {
this
.stuid = stuid;
}
public
string getmajor() {
return
major;
}
public
void
setmajor(string major) {
this
.major = major;
}
//学生选课;
public
boolean
addcourse(course course){
boolean
flag=
false
;
if
(!isselectedcourse(course)&&isnullcourse(course)){
for
(
int
i=
0
;i<
this
.courses.length;i++){
if
(courses[i]==
null
){
courses[i]=course;
course.addstudent(
this
);
//课程也要添加学生
flag=
true
;
break
;
}
}
}
return
flag;
}
//学生移除课程
public
boolean
removecourse(course course){
boolean
flag=
false
;
if
(isselectedcourse(course)){
for
(
int
i=
0
;i<
this
.courses.length;i++){
if
(courses[i]==course){
courses[i]=
null
;
course.removestudent(
this
);
//在课程中移除学生
flag=
true
;
break
;
}
}
}
return
flag;
}
//显示学生所选的课程
public
void
displaycourse(){
system.out.println(
"学生"
+
this
.stuname+
"所选课程有:"
);
for
(course c:courses){
if
(c!=
null
){
system.out.print(c.getname()+
" "
);
}
}
system.out.println();
}
//子方法1:课是否被选过
public
boolean
isselectedcourse(course course){
boolean
flag=
false
;
for
(course c:courses){
if
(c==course){
flag=
true
;
break
;
}
}
return
flag;
}
//子方法2:学生是否还有选修课位置
public
boolean
isnullcourse(course course){
boolean
flag=
false
;
for
(course c:courses){
if
(c==
null
){
flag=
true
;
break
;
}
}
return
flag;
}
}
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
package
test;
public
class
choosecoursebystu {
/**
* 选课管理系统
*/
public
static
void
main(string[] args) {
student stu0 =
new
student(
1001
,
"lily"
);
student stu1 =
new
student(
1002
,
"eilly"
);
student stu2 =
new
student(
1003
,
"floris"
);
student stu3 =
new
student(
1004
,
"haha"
);
course cour0 =
new
course(
001
,
"高数"
);
course cour1 =
new
course(
002
,
"线代"
);
course cour2 =
new
course(
003
,
"概率论"
);
stu0.addcourse(cour0);
stu0.addcourse(cour2);
stu0.addcourse(cour1);
stu1.addcourse(cour2);
stu1.addcourse(cour0);
stu2.addcourse(cour1);
stu3.addcourse(cour0);
stu3.addcourse(cour1);
stu1.removecourse(cour2);
stu0.displaycourse();
cour0.removestudent(stu1);
cour1.displaystudent();
}
}
|
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我.
原文链接:https://blog.csdn.net/Floris_lovelace/article/details/80860470 。
最后此篇关于java实现学生选课系统的文章就讲到这里了,如果你想了解更多关于java实现学生选课系统的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
我有这个代码: System.err.print("number of terms = "); System.out.println(allTerms.size()); System.err
我有以下问题:在操作系统是 Linux 的情况下和在操作系统是 MacOs 的情况下,我必须执行不同的操作。 所以我创建了以下 Ant 脚本目标: /u
我正在调用 system("bash ../tools/bashScript\"This is an argument!\"&"),然后我正在调用 close(socketFD) 直接在 system
使用最初生成的随机元素来约束随机数组的连续元素是否有效。 例如:我想生成一组 10 个 addr、size 对来模拟典型的内存分配例程并具有如下类: class abc; rand bit[5:0
我正在创建一个必须使用system(const char*)函数来完成一些“繁重工作”的应用程序,并且我需要能够为用户提供粗略的进度百分比。例如,如果操作系统正在为您移动文件,它会为您提供一个进度条,
我即将编写一些项目经理、开发人员和业务分析师会使用的标准/指南和模板。目标是更好地理解正在开发或已经开发的解决方案。 其中一部分是提供有关记录解决方案的标准/指南。例如。记录解决/满足业务案例/用户需
在开发使用压缩磁盘索引或磁盘文件的应用程序时,其中部分索引或文件被重复访问(为了论证,让我们说一些类似于 Zipfian 分布的东西),我想知道什么时候足够/更好地依赖操作系统级缓存(例如,Debia
我们编写了一个 powershell 脚本,用于处理来自内部系统的图像并将其发送到另一个系统。现在,业务的另一部分希望加入其中,对数据进行自己的处理,并将其推送到另一个系统。打听了一下,公司周围有几个
我正在尝试朗姆酒我的应用程序,但我收到以下错误:System.Web.HttpUnhandledException:引发了“System.Web.HttpUnhandledException”类型的异
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 要求我们推荐或查找工具、库或最喜欢的场外资源的问题对于 Stack Overflow 来说是偏离主题的,
所以我在其他程序中没有收到此错误,但我在这个程序中收到了它。 这个程序是一个我没有收到错误的示例。 #include int main() { system("pause"); } // en
我在 c# System.URI.FormatExption 中遇到问题 为了清楚起见,我使用的是 Segseuil 的 Matlab 方法,并且它返回一个图片路径 result。我想为其他用户保存此
我正在尝试像这样设置文本框的背景色: txtCompanyName.BackColor = Drawing.Color.WhiteSmoke; 它不喜欢它,因为它要我在前面添加系统,例如: txtCo
请帮助我解决 System.StackOverflowException我想用 .aspx 将记录写入数据库我使用 4 层架构来实现这一切都正常但是当我编译页面然后它显示要插入数据的字段时,当我将数据
我使用了一些通常由系统调用的API。 因此,我将 android:sharedUserId="android.uid.system" 添加到 manifest.xml, 并使用来自 GIT 的 And
我正在尝试创建一个小型应用程序,它需要对/system 文件夹进行读/写访问(它正在尝试删除一个文件,并创建一个新文件来代替它)。我可以使用 adb 毫无问题地重新挂载该文件夹,如果我这样做,我的应用
我想从没有 su 的系统 priv-app 将/system 重新挂载为 RW。如何以编程方式执行此操作?只会用 Runtime.getruntime().exec() 执行一个 shell 命令吗
我正在尝试制作一个带有登录系统的程序我对此很陌生,但我已经连续工作 8 个小时试图解决这个问题。这是我得到的错误代码 + ServerVersion 'con.ServerVersion' threw
当我“构建并运行”Code::Blocks 中的程序时,它运行得非常好!但是当我从“/bin”文件夹手动运行它时,当它试图用 system() 调用“temp.bat”时,它会重置。这是为什么?它没有
我想使用 system/pipe 命令来执行具有特殊字符的命令。下面是示例代码。通过系统/管道执行命令后,它通过改变特殊字符来改变命令。我很惊讶地看到系统命令正在更改作为命令传递的文本。 run(ch
我是一名优秀的程序员,十分优秀!