最大公约数的方法:public int f(int a,int b){ if(a%b==0) return b; else return f(b,a%b);}其他自己写吧.....调用隐藏方法super.f()