题解 1446: 蓝桥杯2013年第四届真题-核桃的数量

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

倒计时28天——核桃的数量

摘要:刚开始的想法是寻找三个数的最小公倍数,但不知道怎么写代码。看了大佬的代码,暴力破解甚得我心!参考代码:#include<stdio.h> #include<stdlib.h> int main……

求最小公倍数

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int fun(int a,int b){    int x,y;    x = a;    y = b;    int t;    i……

c语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int least_num(int a,int b){    return a%b==0 ? b : least_num(b, a % ……

-核桃的数量

摘要:解题思路:能整除这三个数即可,然后跳出循环注意事项:参考代码:#include<stdio.h>int main(){    int a,b,c;    int i ;    scanf("%d %d……