展开全部
max、sum、avg这三个方法都是对的,e5a48de588b662616964757a686964616f31333363393732min方法你没写,就跟max一样的逻辑,反过来即可。
另外我看你类与类的关系搞错了。MyMath类有z、x、y三个属性,一个构造方法,四个普通方法;然后另一个主类则在main方法里面调用MyMath里的四个普通方法。然后就是没有要求的情况下,建议不要加static修饰属性和方法。public class MyMath {
private int z;
private int x;
private int y;
//构造方法
public MyMath(int z, int x, int y) {
super();
this.z = z;
this.x = x;
this.y = y;
}
//get/set方法
public int getZ() {
return z;
}
public void setZ(int z) {
this.z = z;
}
public int getX() {
return x;
}
public void setX(int x) {
this.x = x;
}
public int getY() {
return y;
}
public void setY(int y) {
this.y = y;
}
//四个普通方法
public void max(){};
...
}
之后在另一个主类的main方法中,new一个MyMath类,调用方法。