优质题解 C语言程序设计教程(第三版)课后习题9.1 (C语言代码) 摘要:解题思路:C语言中的宏允许带有参数,包含形参和实参,在宏定义中的参数称为形式参数,在宏调用中的参数称为实际参数,无参宏的宏名后不带参数,其定义的一般形式为: #define 标识符 字符串; 例如#d…… 题解列表 2018年10月22日 17 点赞 44 评论 13775 浏览 评分:8.9
蓝桥杯历届试题-连号区间数 (C++代码) 摘要:解题思路:一开始题意理解错,思路是借鉴地表最强召唤兽的...注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS #include <iostream> #inc…… 题解列表 2018年10月22日 0 点赞 0 评论 832 浏览 评分:0.0
蓝桥杯算法提高VIP-删除数组中的0元素 (C++代码) 摘要:解题思路:水题,开挂注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS #include <iostream> #include <string> #incl…… 题解列表 2018年10月22日 0 点赞 0 评论 690 浏览 评分:0.0
字符逆序 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int main() { char arr[100]; int len,i…… 题解列表 2018年10月22日 2 点赞 0 评论 825 浏览 评分:0.0
2006年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> double fact(int k); int main() { int n,i; double sum=0; …… 题解列表 2018年10月22日 0 点赞 0 评论 684 浏览 评分:0.0
2006年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int i=0,j; int a=0,b=0,c=0; int arr[10086]…… 题解列表 2018年10月22日 0 点赞 0 评论 794 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <math.h> int main() { int n,i,j,max=0,maxi=0,maxj=0…… 题解列表 2018年10月22日 0 点赞 0 评论 832 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int ctof(int c); int main() { int i; for(i=-100;i<=150;i+…… 题解列表 2018年10月22日 0 点赞 0 评论 610 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <math.h> int main() { double in,out; scanf("%lf"…… 题解列表 2018年10月22日 2 点赞 0 评论 979 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> double fact(int n); double mypow(double x,int n); int main() {…… 题解列表 2018年10月22日 1 点赞 0 评论 819 浏览 评分:2.0