62,623
社区成员
发帖
与我相关
我的任务
分享
class Athlete implements Sport
{
public void run()
{
System.out.println("短跑");
}
/*public void jump()
{
System.out.println("三级跳");
}*/
public static void main(String args[])
{
Athlete at=new Athlete();
at.run();
//at.jump();
}
}