这是求最大公约数的函数,至于分数化简就将分母分子同时除以最大公约数就好int gys(int a,int b){ while(a!=b) { if(a>b)a-=b; else b-=a; } return b;}