hdu1019

Posted 王坤1993

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hdu1019相关的知识,希望对你有一定的参考价值。

#include <stdio.h>

int gcd(int a, int b)
{
int t;
while(t=a%b)
{
a=b;
b=t;
}
return b;
}

int main(void)
{
int t,m,n,i,g,lcm;
scanf("%d",&t);
while(t--)
{
scanf("%d",&m);
lcm=1;
while(m--)
{
scanf("%d",&n);
g=gcd(lcm,n);
lcm*=n/g;
}
printf("%d\n",lcm);
}
return 0;
}

以上是关于hdu1019的主要内容,如果未能解决你的问题,请参考以下文章

hdu1019

HDU 1010-1019

HDU 1019 Least Common Multiple 数学题

hdu 1019 Least Common Multiple

HDU 1019 Least Common Multiple

Hdu 1019 Least Common Multiple