HDU 1108: 最小公倍数(in Java)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU 1108: 最小公倍数(in Java)相关的知识,希望对你有一定的参考价值。
最小公倍数
///@author Sycamore, ZJNU ///@date 8/2/2017import java.util.*;public class Main { public static void main(String args[]) { Scanner scanner = new Scanner(System.in); while (scanner.hasNext()) { int a = scanner.nextInt(), b = scanner.nextInt(); System.out.println(lcm(a, b)); } scanner.close(); } public static int gcd(int a, int b) { while (b != 0) { int t = a%b; a = b; b = t; } return a; } public static int lcm(int a, int b) { return a / gcd(a, b)*b; } }
以上是关于HDU 1108: 最小公倍数(in Java)的主要内容,如果未能解决你的问题,请参考以下文章