2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路: 把数据放进二维数组中,在二维数组中拿第一个作为最大值进行比较,得出更大的。把更大的值赋给max。用x,y记录坐标。循环结束就可以输出了。注意事项: 可以先输入,再比较。也可…… 题解列表 2018年01月17日 1 点赞 1 评论 342 浏览 评分:0.0
2006年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路: 参考代码。注意事项:输出放的位置。参考代码:#include<stdio.h>#include <math.h>#include <string.h>#define N 10int ma…… 题解列表 2018年01月17日 2 点赞 0 评论 997 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 题有bug 摘要:解题思路: 看不清 三还是五,但是居然过了,说明这个是有问题的。注意事项: else if的释义应是“否则,如果”。已经满足上面条件的相反条件。参考代码:#include<stdio.h>#…… 题解列表 2018年01月17日 0 点赞 0 评论 1003 浏览 评分:0.0
C二级辅导-公约公倍 (C语言描述 辗转相除的精简) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int main(){ int k,l; scanf("%d%d",&k,&l); …… 题解列表 2018年01月17日 1 点赞 0 评论 1051 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:void main(){ printf("**************** \n"); printf("Hello word! \n"); printf…… 题解列表 2018年01月17日 0 点赞 0 评论 842 浏览 评分:0.0
蓝桥杯算法提高VIP-分数统计 (C语言代码) 摘要:解题思路:注意事项:不知道为啥AC不了?参考代码:#include<stdio.h>int main(){ int n,i,j,temp,t,a[1001]={0},count[5],sum=0; f…… 题解列表 2018年01月17日 0 点赞 0 评论 1192 浏览 评分:0.0
【亲和数】 (C语言代码) 摘要:解题思路: 这个程序有点长,好处就是可以最后一口气输出所有结果。注意事项:参考代码:#include<stdio.h>#include <math.h>#include <string.h>#de…… 题解列表 2018年01月17日 0 点赞 0 评论 797 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题3.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:int main(){ char c1 = 'C',c2 = 'h',c3 = 'i',c4 = 'n'…… 题解列表 2018年01月17日 0 点赞 0 评论 716 浏览 评分:0.0
WU-蓝桥杯算法训练VIP-传球游戏 (C++代码) 摘要:动态规划参考代码:#include <iostream> #include <algorithm> #include <cstring> #include <iomanip> #include…… 题解列表 2018年01月17日 4 点赞 0 评论 965 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.3 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#define A 2int main(void){ int n,i; int t = 1; long long Sn = 0;…… 题解列表 2018年01月18日 0 点赞 0 评论 545 浏览 评分:0.0