HDoj 2028 Lowest Common Multiple Plus
Posted wzmm
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDoj 2028 Lowest Common Multiple Plus相关的知识,希望对你有一定的参考价值。
Problem Description
求n个数的最小公倍数。
Input
输入包含多个测试实例,每个测试实例的开始是一个正整数n,然后是n个正整数。
Output
为每组测试数据输出它们的最小公倍数,每个测试实例的输出占一行。你可以假设最后的输出是一个32位的整数。
Sample Input
2 4 6
3 2 5 7
Sample Output
12
70
Author
lcy
Source
Recommend
C语言代码如下:
#include<stdio.h> #include<malloc.h> int main() { int n=0; int flag; int i,j; while(scanf("%d",&n)!=EOF) { int *a=(int *)malloc(sizeof(int)*n); for(i=0;i<n;i++) scanf("%d",&a[i]); for(i=a[n-1];;i++) { flag=1; for(j=0;j<n;j++) { if(i%a[j]!=0) { flag=0; break; } } if(flag==1) break; } printf("%d ",i); } }
以上是关于HDoj 2028 Lowest Common Multiple Plus的主要内容,如果未能解决你的问题,请参考以下文章
杭电 2028 ( Lowest Common Multiple Plus )
Lowest Common Multiple Plus(hdu2028)
HDU2028 Lowest Common Multiple PlusGCD+LCM
HDU2028 Lowest Common Multiple PlusGCD+LCM