question.java~12~
来自「java在线考试例子代码」· JAVA~12~ 代码 · 共 44 行
JAVA~12~
44 行
package testovernet;
import java.io.*;
public class Question
implements Serializable {
protected static int count = 1;
protected int questionNum;
protected String question;
protected transient String standardAnswer;
protected String studentAnswer;
public Question() {
this.questionNum = count;
count++;
}
public void setCount(int num) {
count=1;
}
public void PrintQuestion() {
}
public void writeToTxtPaper() {
}
public void setStudentAnswer(String studentAnswer) {
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?