icsad 2021-05-18 18:33 采纳率: 87.5%
浏览 144
已采纳

java用继承的方法求最大公倍数和最大公因数时,为什么最小公倍数a*b/m中的b会被吃掉?

public class SA {

    public int f(int a,int b) {
        int c;
        c=a%b;
        if(c==0) 
        return b;
        else return f(b,c);
    }
}

public class SB extends SA{
public int f(int a,int b) {
    int m;
    m=super.f(a,b);
    return a*b/m;
}
}

public class STest {

    public static void main(String[] args) {
        // TODO Auto-generated method stub
        SB q = new SB();
        System.out.println("最小公倍数为:"+q.f(9,6));
        SA w =new SA();
        System.out.println("最大公约数为:"+w.f(9,6));
    }
}

最小公倍数结果为什么不是18而是9(多次尝试后发现b/m是没有计算的)。

  • 写回答

8条回答 默认 最新

  • 关注
    
    class SA {
        public int f(int a,int b) {
            int c = a>b?b:a;
            for(int i = c;i>=1;i--) {
            	if( a%i== 0 && b % i ==0) {
            		return i;
            	}
            }
            return c;
        }
    }
    
    class SB extends SA{
    public int f(int a,int b) {
        int m;
        m=super.f(a,b);
        return a*b/m;
    }
    }
    
    public class STest {
        public static void main(String[] args) {
            // TODO Auto-generated method stub
            SB q = new SB();
            System.out.println("最小公倍数为:"+q.f(9,6));
            SA w =new SA();
            System.out.println("最大公约数为:"+w.f(9,6));
        }
    }
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(7条)

报告相同问题?

悬赏问题

  • ¥15 工创大赛太阳能电动车项目零基础要学什么
  • ¥20 limma多组间分析最终p值只有一个
  • ¥15 nopCommerce开发问题
  • ¥15 torch.multiprocessing.spawn.ProcessExitedException: process 1 terminated with signal SIGKILL
  • ¥15 QuartusⅡ15.0编译项目后,output_files中的.jdi、.sld、.sof不更新怎么解决
  • ¥15 pycharm输出和导师的一样,但是标红
  • ¥15 想问问富文本拿到的html怎么转成docx的
  • ¥15 我看了您的文章,遇到了个问题。
  • ¥15 GitHubssh虚拟机连接不上
  • ¥15 装完kali之后下载Google输入法 重启电脑后出现以下状况 且退不出去 桌面消失 反复重启没用