public class Student{
public static void main(String[]args) {
ShiStudent stu1=new ShiStudent();
stu1.name="倪爱学";
stu1.sex="男";
stu1.age=20;
stu1.score=91.5F;
stu1.speak("年龄"+stu1.age+"岁,");
stu1.grade(stu1.score);
ShiStudent stu2=new ShiStudent();
stu2.name="雍心误";
stu2.sex="女";
stu2.age=18;
stu2.score=95;
stu2.speak("年龄"+stu2.age+"岁,");
stu2.grade(stu2.score);
你这个ShiStudent类是啥呀
代码缺失,少了一个ShiStudent