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