最小公倍数hdu1108
Posted 不积跬步无以至千里,不积小流无以成江海
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了最小公倍数hdu1108相关的知识,希望对你有一定的参考价值。
1 #include <iostream> 2 #include <cmath> 3 #include <cstdio> 4 using namespace std; 5 int gcd(int a,int b) 6 { 7 return b==0?a:gcd(b,a%b); 8 } 9 int main() 10 { 11 int b,a; 12 while(~scanf("%d%d",&a,&b)) 13 cout<<a*b/gcd(a,b)<<endl; 14 return 0; 15 }
以上是关于最小公倍数hdu1108的主要内容,如果未能解决你的问题,请参考以下文章