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

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

筛选

核桃的数量 (C语言代码)

摘要:解题思路:就是求 三个数的最小公倍数注意事项:参考代码:#include<stdio.h>#include<stdlib.h> int fun(int m,int n){ int x,y; x=m; ……

核桃的数量 (C语言代码)

摘要:解题思路:就是找3个数的公倍数注意事项:参考代码:#include<stdio.h>void main(){int a,b,c,i;scanf("%d%d%d",&a,&b,&c);for(i=1;;……

我美吗!

摘要:参考代码:#include <stdio.h> int gongyue(int x,int y) {  int t=1;  if(y>x)  {   t=y;y=x;x=t;  }  ……