资源简介

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个文件信息

评论

共有 条评论