蓝桥杯2013年第四届真题-核桃的数量 摘要:解题思路:化为最小公倍数问题注意事项:参考代码:#include<stdio.h>int gcd(int a,int b){ int c=b; while(a%b!=0) { …… 题解列表 2024年09月25日 0 点赞 0 评论 88 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int least_num(int a,int b){ return a%b==0 ? b : least_num(b, a % …… 题解列表 2023年06月26日 0 点赞 0 评论 214 浏览 评分:0.0
简单粗暴暴力解法 摘要:解题思路:直接从n等于3开始一个一个试三个条件都满足就跳出循环注意事项:参考代码:#include<stdio.h> int main(){ int a,b,c,n; scanf("%d %d %…… 题解列表 2023年03月09日 0 点赞 0 评论 105 浏览 评分:9.9
简单易懂!!! 摘要:解题思路:将题目理解为找三个数的最小共倍数。 因为能平分,说明平分后的数都是没分之前的因子。反过来要求的数就是最小公倍数注意事项:参考代码:#include<stdio.h> int max(…… 题解列表 2023年02月18日 0 点赞 0 评论 55 浏览 评分:0.0
C语言暴力解决这道题 摘要:解题思路: 暴力枚举注意事项:参考代码:#include<stdio.h> int main() { int a,b,c; int k = 0; int sum = 0; …… 题解列表 2022年11月22日 0 点赞 0 评论 111 浏览 评分:0.0
贼简单哦做i出来了 摘要:解题思路:求的就是最小公倍数注意事项:参考代码:int main(){ int a,b,c,s; int tem; scanf("%d %d %d",&a,&b,&c); for(s=2;s<1000…… 题解列表 2022年11月12日 0 点赞 0 评论 195 浏览 评分:9.9
c语言蓝桥杯1446题解 摘要:解题思路:由题意能看出是求三个数的最小公倍数.关键就是把三给数的最小公倍数代码写出就可以解了.注意事项:可以先把最大公约数求出,再把算出最小公倍数,最后调用函数.参考代码:#include<stdio…… 题解列表 2022年11月07日 0 点赞 0 评论 62 浏览 评分:0.0
蓝桥杯2013年第四届真题-核桃的数量,比较好懂 摘要:解题思路:这个是根据两个数求最小公倍数,演化成的注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,r,d,o,i,m,t,e,f; scanf("%d%…… 题解列表 2022年08月04日 0 点赞 0 评论 118 浏览 评分:0.0
核桃的数量 摘要:解题思路:题目意思就是求他们的最小公倍数注意事项:参考代码:#include<stdio.h>int main(){ int i=1,m,n,k; scanf("%d%d%d",&m,&n…… 题解列表 2022年03月24日 0 点赞 0 评论 261 浏览 评分:0.0
哈哈哈哈哈哈哈哈 摘要:解题思路:最小公倍数求解注意事项:不懂留言参考代码:#include<stdio.h>int hh(int a,int b){ return a>b?b:a;}int max(int a,int b)…… 题解列表 2022年02月08日 0 点赞 0 评论 99 浏览 评分:0.0