question.java~21~

来自「java在线考试例子代码」· JAVA~21~ 代码 · 共 42 行

JAVA~21~
42
字号
package testovernet;

import java.io.*;

public class Question
        implements Serializable {

    protected static int count=0;
    protected int questionNum;
    protected String question;
    protected transient String standardAnswer;
    protected String studentAnswer;

    public Question() {

        count++;
        this.questionNum = 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 + -
显示快捷键?