📄 studenttester.java
字号:
package student;public class StudentTester { public static void main(String args[]) { Student s1=new Student("0001","xiaohong",81,87,90); Student s2=new Student("0002", "xiaobai", 90, 98, 89); Student s3=new Student("0003","xiaohei", 89, 94, 98); Student s4=new StudentXW("0004", "xiaowei", 88,99, 98, "学习委员"); Student s5=new StudentBZ("0005", "xiaoban", 97,98, 99, "班长"); System.out.println(s1.toString()+"\n"+s2.toString()+"\n"+s3.toString()+"\n"+s4.toString()+"\n"+s5.toString()+"\n"); } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -