1011题: 最大公约数与最小公倍数 摘要:#自己写的代码```c#includeintmain(){inta,b;inttemp=0;scanf("%d%d",&a,&b);for(inti=1;i…… 题解列表 2023年04月25日 0 点赞 0 评论 91 浏览 评分:0.0
1011: [编程入门]最大公约数与最小公倍数 摘要:解题思路:注意事项:参考代码://辗转相除法#include<stdio.h>intmain(){ intm,n; &nbs…… 题解列表 2023年04月18日 0 点赞 0 评论 41 浏览 评分:0.0
一个新思路 摘要:解题思路:输入a和b,用双循环,外循环判断是否能被a,整除,如果不行continue跳转到下一个数字;如果可以运行内循环,判断能否被b整除,如果可以,那么此时这个数(此刻的i)就是a和b的因数,将其赋…… 题解列表 2023年04月05日 0 点赞 0 评论 95 浏览 评分:9.0
编写题解 1011: [编程入门]最大公约数与最小公倍数 摘要:解题思路:用列表很方便参考代码:a,b=map(int,input().split())lis1=[]lis2=[]def f1(x,y): &…… 题解列表 2023年03月29日 0 点赞 0 评论 37 浏览 评分:0.0
最大公约数与最小公倍数c 摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){ intm,n;&…… 题解列表 2023年03月27日 0 点赞 0 评论 28 浏览 评分:0.0
最大公约数与最小公倍数c语言 摘要:解题思路:注意事项:参考代码:#include"stdio.h"main(){ intn,m,i,j; …… 题解列表 2023年03月23日 0 点赞 2 评论 45 浏览 评分:9.9
更相减损法 c++ 摘要:解题思路:更相减损法注意事项:参考代码:#include<iostream>usingnamespacestd;intmain() {inta,b;cin>>…… 题解列表 2023年03月20日 0 点赞 0 评论 26 浏览 评分:0.0
[编程入门]最大公约数与最小公倍数 摘要:解题思路:最大公约数a:满足、m%a=0andn%a=0.最小公倍数b:m*n/最大公约数.注意事项:b是一个大于或者等于m、n其中的最大整数的整数,它是m、n的整数倍。参考代码:a,b=map(in…… 题解列表 2023年03月18日 0 点赞 0 评论 45 浏览 评分:0.0
[编程入门]最大公约数与最小公倍数,递归 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>usingnamespacestd;intgcd(intm,intn){if(m%n==0)returnn;re…… 题解列表 2023年03月14日 0 点赞 0 评论 63 浏览 评分:0.0
1011: [编程入门]最大公约数与最小公倍数 摘要:#include<stdio.h>int main(){ int a,b,…… 题解列表 2023年03月11日 0 点赞 0 评论 38 浏览 评分:0.0