码迷,mamicode.com
首页 > 编程语言 > 详细

C++谭浩强 课后习题 第四章函数预处理 1

时间:2018-02-04 19:41:29      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:system   最大公约数   clu   std   最小公倍数   mes   公倍数   最小   ret   

#include <iostream>

using namespace std;

int gyx(int,int);

int gbx(int,int);

int main()

{  

int a,b;  cout<<"请输入2个整数";  

cin>>a>>b;  

cout<<"最大公约数为"<<gyx(a,b)<<endl;

cout<<"最小公倍数为"<<gbx(a,b)<<endl;  

system("pause");  

return 0;

}

int gyx(int x,int y)

{

int z;  

z=(x<y)? x:y;  

for(;x%z!=0 || y%z!=0;z--);  

return z;

}

int gbx(int x,int y)

{  

int c;  

c=x*y/gyx(x,y);  

return c;

}

C++谭浩强 课后习题 第四章函数预处理 1

标签:system   最大公约数   clu   std   最小公倍数   mes   公倍数   最小   ret   

原文地址:https://www.cnblogs.com/Eternal-kong/p/8413661.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!