美文网首页
2018-09-30

2018-09-30

作者: yangxiaosu | 来源:发表于2018-09-30 21:53 被阅读0次

    #include <iostream>

    using namespace std;

    int main()

    {int lcm(int x,int y);

     int a,b,c;

     cout<<"please enter two numbers:";

     cin>>a>>b;

     c=lcm(a,b);

     cout <<c<< endl;

    return 0;

    }

    int lcm(int x,int y)

    {int i=1,t,u;

            while(t!=0)

             {u=x*i;

              t=u%y;

              i++;

             }

         return(u);

    }

    相关文章

      网友评论

          本文标题:2018-09-30

          本文链接:https://www.haomeiwen.com/subject/ohrgoftx.html