码迷,mamicode.com
首页 > 编程语言 > 详细

HDU 1108: 最小公倍数(in Java)

时间:2017-08-03 01:00:09      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:exti   java   imp   more   最小   osi   text   time   roman   

最小公倍数

///@author Sycamore, ZJNU
///@date 8/2/2017
import 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 (!= 0) { int t = a%b;= b;= t; } return a; } public static int lcm(int a, int b) { return a / gcd(a, b)*b; } }

HDU 1108: 最小公倍数(in Java)

标签:exti   java   imp   more   最小   osi   text   time   roman   

原文地址:http://www.cnblogs.com/zjnu/p/7277355.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!