码迷,mamicode.com
首页 > 其他好文 > 详细

UVA11388-GCD LCM

时间:2014-09-06 17:25:33      阅读:288      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   io   ar   2014   sp   

题目链接


题意:给你两个数G和L,输出两个正整数,最大公约数为G,最小公倍数为L,输出a最小的情况,如果不存在输出-1。

思路:当a最小时,a = G,所以只要L % G == 0,就表示存在。

代码:

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>

using namespace std;

int g, l;

int main() {
    int cas;
    scanf("%d", &cas);
    while (cas--) {
        scanf("%d%d", &g, &l); 
        if (g > l) {
            swap(g, l);
        }
        if (l % g == 0) 
            printf("%d %d\n", g, l);
        else
            printf("-1\n");
    } 
    return 0;
}



UVA11388-GCD LCM

标签:style   blog   http   color   os   io   ar   2014   sp   

原文地址:http://blog.csdn.net/u011345461/article/details/39102129

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