📄 s_score.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -