求两个数的最小公倍数

求两个数的最小公倍数 #include  < stdio.h >
求两个数的最小公倍数#include 
< conio.h >
求两个数的最小公倍数
求两个数的最小公倍数
int  divisor( int  a, int  b)
求两个数的最小公倍数
{
求两个数的最小公倍数 
int r;
求两个数的最小公倍数 
while ((r=a%b)!=0)
求两个数的最小公倍数   
{a=b;b=r;}
求两个数的最小公倍数 
return b;
求两个数的最小公倍数}

求两个数的最小公倍数
求两个数的最小公倍数
int  multiple( int  a, int  b)
求两个数的最小公倍数
{
求两个数的最小公倍数 
int d;
求两个数的最小公倍数 d
=divisor(a,b);
求两个数的最小公倍数 
return a*b/d;
求两个数的最小公倍数}

求两个数的最小公倍数
求两个数的最小公倍数
void  main()
求两个数的最小公倍数
{
求两个数的最小公倍数 
int a,b,c;
求两个数的最小公倍数 clrscr();
求两个数的最小公倍数 printf(
"Input a b:");
求两个数的最小公倍数 scanf(
"%d,%d",&a,&b);
求两个数的最小公倍数 c
=multiple(a,b);
求两个数的最小公倍数 printf(
"c=%d",c);
求两个数的最小公倍数}

你可能感兴趣的:(求两个数的最小公倍数)