最大公约数与最小公倍数 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int x,y; int i,j,min; scanf("%d %d",&x,&y); min=x; if(x…… 题解列表 2023年12月22日 0 点赞 0 评论 56 浏览 评分:0.0
java 辗转相除法 摘要:解题思路:辗转相除法求最大公约数:两数中较小的数与两数相除余数的最大公约数注意事项:参考代码:1,普通法import java.util.Scanner; public class Main {…… 题解列表 2023年12月29日 0 点赞 0 评论 159 浏览 评分:9.9
1011: [编程入门]最大公约数与最小公倍数 摘要:解题思路:辗转相除法注意事项:参考代码:#include <stdio.h>int gcd(int m, int n){ if (m % n == 0) return n; else re…… 题解列表 2023年12月30日 0 点赞 0 评论 83 浏览 评分:0.0
经典解题步骤 摘要:参考代码:#include<stdio.h> int main() { int m, n; scanf("%d%d", &m, &n); if(m > n) { int t …… 题解列表 2024年01月03日 0 点赞 0 评论 63 浏览 评分:9.9
最大公约数与最小公倍数 摘要:![](https://mongorolls-images.oss-cn-shenzhen.aliyuncs.com/img/v2-9b7e9ef8c747f90f269bfa555f22b00d_1…… 题解列表 2024年01月03日 0 点赞 0 评论 93 浏览 评分:9.9
1011: [编程入门]最大公约数与最小公倍数 摘要:解题思路:注意事项:最小公倍数=两数之积/最大公因数参考代码:列表a, b = map(int,input().split())l = []s = []for i in range(1, min(a,…… 题解列表 2024年01月09日 0 点赞 0 评论 51 浏览 评分:0.0
更相减损法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,y,z,a; scanf("%d %d",&x,&y); a = x*y; …… 题解列表 2024年01月11日 0 点赞 0 评论 102 浏览 评分:9.9
1011: [编程入门]最大公约数与最小公倍数 摘要:解题思路:先算最大公倍数(或最小公倍数)然后用(n*m)/最大公约数(或最小公倍数)注意事项:n*m=最大公约数*最小公倍数参考代码:#include <iostream>using namespac…… 题解列表 2024年01月14日 0 点赞 0 评论 55 浏览 评分:9.9
题解 1011: [编程入门]最大公约数与最小公倍数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long m,n; cin>>m>>…… 题解列表 2024年01月15日 0 点赞 0 评论 53 浏览 评分:0.0
[编程入门]最大公约数与最小公倍数 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ long long m,n,r=0,p=0; cin>>…… 题解列表 2024年01月15日 0 点赞 0 评论 77 浏览 评分:0.0