最大公约数与最小公倍数 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a, b, temp; scanf("%d%d", &a, &b); int res…… 题解列表 2022年05月11日 0 点赞 0 评论 122 浏览 评分:0.0
1011: [编程入门]最大公约数与最小公倍数 摘要:import java.io.*; /** * 找公因数:从小的那个数开始往下遍历,当两个数都可以把它整除时就是公因数。 * 找公倍数:两个数相乘再除以公因数就是公倍数。 */ …… 题解列表 2022年05月10日 0 点赞 0 评论 80 浏览 评分:0.0
最大公约数与最小公倍数 题解(c++懒人必用超简单) 摘要:解题思路:这题用懒人方法做就是直接用函数。呵呵。。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;long long a,b;int ma…… 题解列表 2022年05月08日 0 点赞 0 评论 139 浏览 评分:0.0
C++模拟短除做的 摘要:解题思路:可以在纸上先用短除做一遍,会发现找到的最大公约数就是短除号前的那些数相乘,而最小公倍数又=m*n/最大公约数注意事项:参考代码:#include<iostream>//我是模拟短除做的usi…… 题解列表 2022年05月01日 0 点赞 0 评论 136 浏览 评分:0.0
[编程入门]最大公约数与最小公倍数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int a,b;int main(){ cin>>a>>b; for(int i=m…… 题解列表 2022年04月29日 0 点赞 0 评论 127 浏览 评分:0.0
数学+编程小白的复杂题解 摘要:解题思路:根据公因数和公倍数的定义,使用for循环穷举参考代码:def gongyin(m,n): gongyin=[] for i in range(1,m+1): …… 题解列表 2022年04月28日 0 点赞 0 评论 635 浏览 评分:9.9
简单又暴力 摘要:解题思路:逐层思考思考,简单暴力。注意事项:注意开始的位置。参考代码:#include<stdio.h>int main(void){ int m,n,a,b; scanf("%d%d",&m,&n)…… 题解列表 2022年04月24日 0 点赞 2 评论 91 浏览 评分:9.9
1011: [编程入门]最大公约数与最小公倍数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int G(int a,int b){ if(b==0) return a; return G(b,a%b);}int main(){…… 题解列表 2022年04月16日 0 点赞 0 评论 236 浏览 评分:0.0
非常普通的小白解法记录(do-while) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int m,n; scanf("%d %d",&m,&n); //保留m,n原值 …… 题解列表 2022年04月14日 0 点赞 0 评论 147 浏览 评分:9.9
编写题解 1011: [编程入门]最大公约数与最小公倍数(python) 摘要:解题思路:通过for循环求出最大公因数,再通过“最小公倍数=两数之积/最大公因数”得出最小公倍数注意事项:最后输出是整型参考代码:m, n = map(int, input().split(" "))…… 题解列表 2022年04月09日 0 点赞 0 评论 873 浏览 评分:9.9