梦凡


私信TA

用户名:fan123456

访问量:1427

签 名:

等  级
排  名 1652
经  验 2724
参赛次数 4
文章发表 17
年  龄 0
在职情况 学生
学  校 云天职教
专  业 软件技术与应用

  自我简介:

解题思路:

注意事项:

参考代码:

#include <stdio.h>

int main()

{

    int a, b, temp;

    scanf("%d%d", &a, &b);

    int res = a * b;

    if (b > a)

    {

        temp = a;

        a = b;

        b = temp;

    }

    while (1)

    {

        temp = a % b;

        if (!temp)

            break;

        a = b;

        b = temp;

    }

    printf("%d %d", b, res / b);

    return 0;

}



 

0.0分

0 人评分

  评论区

  • «
  • »