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

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

筛选

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

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){     int a,b,c;     int i;     scanf("%d%d%d",&a,&b,&c); ……

哈哈哈哈哈哈哈哈

摘要:解题思路:最小公倍数求解注意事项:不懂留言参考代码:#include<stdio.h>int hh(int a,int b){ return a>b?b:a;}int max(int a,int b)……

求最小公倍数

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