//计算两个数值的最小公倍数
//列如:4和6的最小公倍数是12.
#include<stdio.h>
int main()
{
int a,b,temp,i;
printf("Input a&b:");
scanf("%d,%d",&a,&b);
if(a<b)
{
temp=a;
a=b;
b=temp;
}
for(i=a;i>0;i++)
if(i%a==0&&i%b==0)
{/*输出满足条件的自然数并结束循环 */
printf("The LCW of %d and %d is:%d ",a,b,i);
break;
}
return 0;
}
//输入数值:4,6
//输出结果:12