随笔分类 -  *数学---基础

摘要:Benefit UVA - 11889 题意: 给出a和c, 让求最小的b使得lcm(a, b) == c. 1 #include <bits/stdc++.h> 2 using namespace std; 3 4 int gcd(int a, int b){ 5 return b == 0 ? 阅读全文
posted @ 2017-12-02 17:20 yijiull 阅读(177) 评论(0) 推荐(0)