03. public static void scoreSpeak(double score)
07 public static void ageSpeak(int age)
30. new StudentMethod.scoreSpeak(); 应该是StudentMethod.scoreSpeak(score);
50. StudentMethod.ageSpeak();应该是 StudentMethod.ageSpeak(age);
你的代码没什么大问题,主要是调用的时候,忘了想你定义的函数中传值了 |
|