s_score.java
来自「7、学生学籍管理系统 调查所在学校学生处、教务处」· Java 代码 · 共 48 行
JAVA
48 行
package file;
public class S_score {
private String number;
private int math,chinese,english;
public void setNumber(String number)
{
this.number=number;
}
public void setMath(int math)
{
this.math=math;
}
public void setChinese(int chinese)
{
this.chinese=chinese;
}
public void setEnglish(int english)
{
this.english=english;
}
public String getNumber()
{
return number;
}
public int getMath()
{
return math;
}
public int getChinese()
{
return chinese;
}
public int getEnglish()
{
return english;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?