【编程入门】自定义函数处理最大公约数与最小公倍数 摘要:解题思路: 求最大公约数利用辗转相除法(欧几里得算法),求最小公倍数利用公式 lcm = (x * y) / gcd(x, y)注意事项: 理解辗转相除法的本质参考代码:#include <stdio…… 题解列表 2024年12月05日 2 点赞 0 评论 497 浏览 评分:9.9
[编程入门]自定义函数处理最大公约数与最小公倍数 C语言 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; int t,j; scanf("%d%d",&a,&b); j=a*b; while(1) {…… 题解列表 2024年11月30日 0 点赞 0 评论 177 浏览 评分:0.0
普普通通的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include <math.h>int gys(int a,int b){ if (a%b == 0) return b; else …… 题解列表 2024年11月23日 0 点赞 0 评论 94 浏览 评分:0.0
最复杂的解题方法(但比较好理解) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int f1(int a,int b){ int s=0; if(a>=b) s=b; else s=a; wh…… 题解列表 2024年11月21日 0 点赞 0 评论 52 浏览 评分:0.0
1027: [编程入门]自定义函数处理最大公约数与最小公倍数 摘要:```cpp #include using namespace std; int zdgys(int a,int b){ for(int i=a;i>=1;i--) if(a%i==0…… 题解列表 2024年07月02日 0 点赞 0 评论 87 浏览 评分:9.9
1027 最大公约数与最小公倍数(只求最大公约数即可求解) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int gongyueshu(int m,int n){ int max; if(m>n) { for(int i=n;i>=1;i-…… 题解列表 2024年05月14日 0 点赞 0 评论 57 浏览 评分:0.0
自定义函数处理最大公约数与最小公倍数 摘要:解题思路:题目要求要建函数,所以得知道怎么去建立函数,再考虑如何去求解,对于小白来说,解题的思路就是建立函数——建立主函数——调用函数注意事项:参考代码:#include<stdio.h>int gb…… 题解列表 2024年05月10日 0 点赞 0 评论 143 浏览 评分:0.0
题解 1027: [C语言]自定义函数处理最大公约数与最小公倍数 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> #include <math.h> #include <stdlib.h> #inc…… 题解列表 2024年04月15日 0 点赞 0 评论 77 浏览 评分:0.0
简易求解最大公约数和最小公倍数 摘要:解题思路:这段代码的主要目的是求解两个整数的最大公约数和最小公倍数。1. 最大公约数(Greatest Common Divisor,GCD): - 首先,通过`da`函数计算最大公约数。 -…… 题解列表 2024年03月26日 0 点赞 0 评论 114 浏览 评分:9.9
1027: [编程入门]自定义函数处理最大公约数与最小公倍数法二 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int fun1(int m,int n){ int min,num1; if(m>n){ min=n; …… 题解列表 2024年03月11日 0 点赞 0 评论 132 浏览 评分:0.0