核桃的数量 (C语言代码) 摘要:解题思路:就是求 三个数的最小公倍数注意事项:参考代码:#include<stdio.h>#include<stdlib.h> int fun(int m,int n){ int x,y; x=m; …… 题解列表 2017年10月20日 0 点赞 0 评论 1418 浏览 评分:0.0
蚂蚁感冒 (C语言代码) 摘要:解题思路:分析题意注意事项:参考代码:#include <iostream> #include<string.h> #include<cstdio> #include<s…… 题解列表 2017年10月20日 1 点赞 0 评论 1587 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:#include <stdio.h>int add(int a ,int b);int main(void){ printf("%d\n",add(3,5));}int add(int a …… 题解列表 2017年10月21日 0 点赞 0 评论 987 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题3.7 (C语言代码) 摘要:解题思路:使用字符数组进行输出注意事项:数组下标从0开始参考代码:#include <stdio.h>int main(void){ char China[] = "China" ; for(int …… 题解列表 2017年10月21日 0 点赞 0 评论 1340 浏览 评分:0.0
蓝桥杯历届试题-翻硬币 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> #include<cstring> using namespace std; const …… 题解列表 2018年03月31日 0 点赞 0 评论 1733 浏览 评分:0.0
Tom数 (C语言代码) 摘要:#include <stdio.h> void main() { char nums[33]; while (gets(nums)!=NULL) { int …… 题解列表 2017年10月21日 0 点赞 0 评论 1895 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.3 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> #define zhouchang(a,b,c)S=(a+b+c)/2; #define mi…… 题解列表 2017年10月22日 0 点赞 0 评论 1873 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.4 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #define LEAP_YEAR(y) (y%400==0||(y%100!=0&&y%4==0)) int main(){ …… 题解列表 2017年10月22日 0 点赞 0 评论 1670 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.6 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ float a; scanf("%f",&a); printf("%.2f\n",a); p…… 题解列表 2017年10月22日 0 点赞 0 评论 1308 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.1 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int a,b,c; scanf("%d %d %d",&a,&b,&c); int t; …… 题解列表 2017年10月22日 0 点赞 0 评论 1797 浏览 评分:0.0