编写题解 1011: [编程入门]最大公约数与最小公倍数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int x,y,a,b,p; cin>>x>>y; for…… 题解列表 2022年03月25日 0 点赞 0 评论 173 浏览 评分:0.0
1011: [编程入门]最大公约数与最小公倍数 摘要:解题思路:kan注意事项: int nNum1 = m ;//中间变量:保存m int nNum2 = n ;//中间变量:保存n参考代码:int t = 1 ;//取余计算的余数,赋值为1是为…… 题解列表 2022年03月26日 0 点赞 0 评论 220 浏览 评分:9.9
最大公约数与最小公倍数(简化) 摘要:解题思路:辗转相除法求得最大公约数,再求得最小公倍数。注意事项:参考代码:#include <stdio.h>int main(){ int a,b; int t; scanf("%d %d", &…… 题解列表 2022年03月28日 0 点赞 0 评论 182 浏览 评分:9.9
辗转相减法——最大公约数与最小公倍数 摘要:解题思路:辗转相减法注意事项:参考代码:m,n=map(int,input().split())product=m*nwhile m!=n: p=max(m,n) q=min(m,n) …… 题解列表 2022年03月29日 0 点赞 0 评论 437 浏览 评分:9.9
C语言 先暴力一个再计算找另一个 摘要: #include int main(){ int a,b; int c=0,d=0; scanf("%d %d",&a,&b); in…… 题解列表 2022年03月29日 0 点赞 0 评论 135 浏览 评分:0.0
最大公约数与最小公倍数模板 摘要:#include <stdio.h> int gcd(int a,int b) { if(b==0)return a; else return gcd(b,a%b); } int ma…… 题解列表 2022年04月01日 0 点赞 0 评论 121 浏览 评分:9.9
编写题解 1011: [编程入门]最大公约数与最小公倍数(python) 摘要:解题思路:通过for循环求出最大公因数,再通过“最小公倍数=两数之积/最大公因数”得出最小公倍数注意事项:最后输出是整型参考代码:m, n = map(int, input().split(" "))…… 题解列表 2022年04月09日 0 点赞 0 评论 873 浏览 评分:9.9
非常普通的小白解法记录(do-while) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int m,n; scanf("%d %d",&m,&n); //保留m,n原值 …… 题解列表 2022年04月14日 0 点赞 0 评论 146 浏览 评分: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 评论 235 浏览 评分:0.0
简单又暴力 摘要:解题思路:逐层思考思考,简单暴力。注意事项:注意开始的位置。参考代码:#include<stdio.h>int main(void){ int m,n,a,b; scanf("%d%d",&m,&n)…… 题解列表 2022年04月24日 0 点赞 2 评论 91 浏览 评分:9.9