题解 1027: [编程入门]自定义函数处理最大公约数与最小公倍数,小白易懂 摘要:解题思路:注意事项:i不能从0开始参考代码:#include<iostream>using namespace std;int main(){ int a,b,ret,t; cin>>a>…… 题解列表 2024年01月19日 0 点赞 0 评论 79 浏览 评分:0.0
自定义函数处理最大公约数与最小公倍数 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int fun1(int m,int n){ int p; while(n!=0)…… 题解列表 2022年10月09日 0 点赞 0 评论 73 浏览 评分:0.0
[编程入门]自定义函数处理最大公约数与最小公倍数-题解(C++代码) 摘要:#解题思路,利用辗转相除法求解两个数的最大公约数 #include /*1027题-[编程入门]自定义函数处理最大公约数与最小公倍数-题解(C++描述)*/ using namespace…… 题解列表 2020年01月14日 0 点赞 0 评论 1394 浏览 评分:0.0
[编程入门]自定义函数处理最大公约数与最小公倍数-题解(C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>#include<cmath>using namespace std;int get_gongbei…… 题解列表 2020年06月30日 0 点赞 0 评论 304 浏览 评分:0.0
自定义函数处理最大公约数与最小公倍数 摘要: #include using namespace std; int fun_a(int a, int b) { int r; w…… 题解列表 2022年10月11日 0 点赞 0 评论 107 浏览 评分:0.0
1027 题解 摘要:参考代码:#include<iostream> using namespace std; int add(int a,int b,int c) { if(a>b) { while(a%b!…… 题解列表 2023年02月05日 0 点赞 0 评论 49 浏览 评分:0.0
自定义函数处理最大公约数与最小公倍数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long n,m;int main(){ cin>>n>>m; f…… 题解列表 2022年05月16日 0 点赞 0 评论 117 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.1 (C++代码)感觉自己基础差后重新刷基础题 摘要:#include<iostream> using namespace std; int gcd(int a,int b) { if(b==0) return a; return…… 题解列表 2019年03月30日 0 点赞 0 评论 541 浏览 评分:0.0
多用数学思想考虑考虑,EZ,收徒 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int max,min,e; int a,b; …… 题解列表 2024年03月01日 0 点赞 0 评论 87 浏览 评分:0.0
循环找公因数和公倍数 摘要:解题思路:inline 为内联函数注意事项:参考代码:#include<iostream>using namespace std;inline int find_max(int a,int b){ …… 题解列表 2023年12月26日 0 点赞 0 评论 31 浏览 评分:0.0