helloworld


私信TA

用户名:helloworld999

访问量:707

签 名:

等  级
排  名 27219
经  验 558
参赛次数 0
文章发表 3
年  龄 0
在职情况 学生
学  校 合肥工业大学
专  业

  自我简介:

TA的其他文章

解题思路:

注意事项:

参考代码:

#include <iostream>

using namespace std;

int func(int a, int b)

{

return a % b == 0 ? b : func(b, a % b);

}

int main()

{

int a, b;

cin >> a >> b;

cout << func(a, b) << endl;

cout << a * b / func(a, b) << endl;

return 0;

}


 

0.0分

0 人评分

  评论区

  • «
  • »