杭电ACM2504

来源:互联网 发布:超级淘宝系统小说手机 编辑:程序博客网 时间:2024/04/29 22:02
Problem Description
有三个正整数a,b,c(0<a,b,c<10^6),其中c不等于b。若a和c的最大公约数为b,现已知a和b,求满足条件的最小的c。
Input
第一行输入一个n,表示有n组测试数据,接下来的n行,每行输入两个正整数a,b。
Output
输出对应的c,每组测试数据占一行。
Sample Input
2
6 2
12 4
Sample Output
4

8


代码如下:

#include<iostream>using namespace std;int god(long x,int y){return y?god(y,x%y):x;}int main(){long i,x,a,b,c,n,y;cin>>n;while(n--){   cin>>a>>b;if (a<b){i=a;a=b;b=i;}y=2;x=a/b; while(god(x,y)!=1){y++;   }   c=y*b;   cout<<c<<endl;;}return 0;} 

1 0
原创粉丝点击