资源简介
A学员系统:
选择学员系统后直接 让用户输入用户名密码进行登录 登录后显示下面菜单
Q.退出
A1修改密码
A2直接随机生成一套试题答题
A3查询所有考试成绩
A4导出所有考试成绩
用户模块:登录、退出、修改密码
考试模块:开始考试、查询成绩、导出成绩
B管理员系统:
选择管理员系统之后 直接提示用户输入用户名密码,登录后显示下面菜单
Q.退出
B1增加考试学员
B2删除考试学员
B3修改考试学员
B4查询考试学员
B5增加考题
B6修改考题
B7删除考题
B8查询考题 按照id 或者 查询所有的
B9批量导入考题
代码片段和文件信息
package cn.xdl.bean;
import java.io.Serializable;
public class Test implements Serializable{
/**
*
*/
private static final long serialVersionUID = 1L;
private int id;
private int num;
private String question;
private String a;
private String b;
private String c;
private String d;
private int score;
private String right;
public Test() {
super();
// TODO Auto-generated constructor stub
}
public Test(String question String a String b String c String d int scoreString right) {
super();
this.question = question;
this.a = a;
this.b = b;
this.c = c;
this.d = d;
this.right=right;
this.score = score;
}
public Test(int id int num String question String a String b String c String d int scoreString right) {
super();
this.id = id;
this.num = num;
this.question = question;
this.a = a;
this.b = b;
this.c = c;
this.d = d;
this.right=right;
this.score = score;
}
public Test(int num String question String a String b String c String d int scoreString right) {
super();
this.num = num;
this.question = question;
this.a = a;
this.b = b;
this.c = c;
this.d = d;
this.right=right;
this.score = score;
}
public String getRight() {
return right;
}
public void setRight(String right) {
this.right = right;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public int getNum() {
return num;
}
public void setNum(int num) {
this.num = num;
}
public String getQuestion() {
return question;
}
public void setQuestion(String question) {
this.question = question;
}
public String getA() {
return a;
}
public void setA(String a) {
this.a = a;
}
public String getB() {
return b;
}
public void setB(String b) {
this.b = b;
}
public String getC() {
return c;
}
public void setC(String c) {
this.c = c;
}
public String getD() {
return d;
}
public void setD(String d) {
this.d = d;
}
public int getScore() {
return score;
}
public void setScore(int score) {
this.score = score;
}
public static long getSerialversionuid() {
return serialVersionUID;
}
@Override
public String toString() {
return “Test [id=“ + id + “ num=“ + num + “ question=“ + question + “ a=“ + a + “ b=“ + b + “ c=“ + c
+ “ d=“ + d + “ score=“ + score + “]“;
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-10-08 20:59 TestSystem\
目录 0 2018-09-20 14:26 TestSystem\SE_Client\
文件 379 2018-09-19 10:52 TestSystem\SE_Client\.classpath
文件 385 2018-09-19 09:35 TestSystem\SE_Client\.project
目录 0 2018-09-21 09:30 TestSystem\SE_Client\.settings\
文件 80 2018-09-21 09:30 TestSystem\SE_Client\.settings\org.eclipse.core.resources.prefs
文件 598 2018-09-19 09:35 TestSystem\SE_Client\.settings\org.eclipse.jdt.core.prefs
目录 0 2018-09-26 19:28 TestSystem\SE_Client\bin\
目录 0 2018-09-26 19:28 TestSystem\SE_Client\bin\cn\
目录 0 2018-09-26 19:28 TestSystem\SE_Client\bin\cn\xdl\
目录 0 2018-09-26 19:28 TestSystem\SE_Client\bin\cn\xdl\bean\
文件 3589 2018-09-26 19:28 TestSystem\SE_Client\bin\cn\xdl\bean\Test.class
文件 1868 2018-09-26 19:28 TestSystem\SE_Client\bin\cn\xdl\bean\TestResult.class
文件 1837 2018-09-26 19:28 TestSystem\SE_Client\bin\cn\xdl\bean\User.class
目录 0 2018-09-26 19:28 TestSystem\SE_Client\bin\cn\xdl\main\
文件 7915 2018-09-28 20:09 TestSystem\SE_Client\bin\cn\xdl\main\Main.class
目录 0 2018-09-26 19:28 TestSystem\SE_Client\bin\cn\xdl\test\
文件 1727 2018-09-26 19:28 TestSystem\SE_Client\bin\cn\xdl\test\Test1.class
目录 0 2018-09-26 19:28 TestSystem\SE_Client\bin\cn\xdl\view\
文件 7663 2018-09-26 19:28 TestSystem\SE_Client\bin\cn\xdl\view\ClientView.class
目录 0 2018-09-20 14:26 TestSystem\SE_Client\src\
目录 0 2018-09-20 14:26 TestSystem\SE_Client\src\cn\
目录 0 2018-09-20 14:26 TestSystem\SE_Client\src\cn\xdl\
目录 0 2018-09-21 15:25 TestSystem\SE_Client\src\cn\xdl\bean\
文件 2468 2018-09-21 11:10 TestSystem\SE_Client\src\cn\xdl\bean\Test.java
文件 1205 2018-09-21 16:29 TestSystem\SE_Client\src\cn\xdl\bean\TestResult.java
文件 1343 2018-09-19 10:54 TestSystem\SE_Client\src\cn\xdl\bean\User.java
目录 0 2018-09-20 14:26 TestSystem\SE_Client\src\cn\xdl\main\
文件 8409 2018-09-28 20:08 TestSystem\SE_Client\src\cn\xdl\main\Main.java
目录 0 2018-09-20 14:26 TestSystem\SE_Client\src\cn\xdl\test\
文件 1124 2018-09-21 08:33 TestSystem\SE_Client\src\cn\xdl\test\Test1.java
............此处省略66个文件信息
- 上一篇:web育儿早教预约系统
- 下一篇:Notepad++ 7.2.2
相关资源
- 2012年软考数据库工程师全天真题及答
- 人民大学数据库课件
- 达梦DM产品白皮书包含共享集群,交换
- 1:100万基础地理数据库系列_2017县级行
- 《ONVIF协议网络摄像机IPC客户端程序开
- 创宇客户端
- sigmod 2012 全部论文
- 2018年最新 统计用全国行政区划数据库
- linux版石器1.82-6.0服务端
- 嵌入式局域网聊天系统客户端
- FERET_80_80-人脸数据库257602
- superCleanMaster仿360清理大师
- 魔兽335模拟器源代码
- 外卖小程序源码带后台和数据库
- 中国人民大学数据库期末模拟试题及
- 武大计算机系数据库原理与技术课件
- 川大数据库系统(SSD6)历年考题、
- 身份证归属地数据库.xlsx
- 数据库大量数据导出Excel
- 全国高校名单—数据库参考(EXCEL)
- 数据库安全技术白皮书汇总
- 3114006172陈世强数据库课程设计报告
- linux c下的ftp客户端和服务器端
- 政府采购系统
- 图数据库第二版 作者[美] 伊恩·罗宾
- 食堂系统 代码 数据库 可运行
- 四级数据库工程师 完美集锦
- 机票预定系统数据库系统设计
- 机票预订系统数据库系统设计
- onvif协议网络摄像机(IPC)客户端程序
评论
共有 条评论