会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
寂寞致幻
博客园
首页
新随笔
联系
管理
订阅
2019年6月21日
C++求最大公约数,最小公倍数
摘要: #include using namespace std; int main() { int m,n,a,b,m1; cout > m >> n; if(m>n) { a=m; b=n; } else { a=n; b=m; } while(m1!=0) { m1=a%b; a=b; b=m1; } cout << "最大公约数=" << a<<endl; co...
阅读全文
posted @ 2019-06-21 11:10 寂寞致幻
阅读(5322)
评论(2)
推荐(0)
编辑
公告