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 评论 497 浏览 评分: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 评论 629 浏览 评分: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 评论 597 浏览 评分: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 评论 497 浏览 评分:0.0
字符逆序 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int main() { char arr[100]; int len,i…… 题解列表 2018年10月22日 2 点赞 0 评论 613 浏览 评分:0.0
蓝桥杯算法提高VIP-删除数组中的0元素 (C++代码) 摘要:解题思路:水题,开挂注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS #include <iostream> #include <string> #incl…… 题解列表 2018年10月22日 0 点赞 0 评论 555 浏览 评分:0.0
蓝桥杯历届试题-连号区间数 (C++代码) 摘要:解题思路:一开始题意理解错,思路是借鉴地表最强召唤兽的...注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS #include <iostream> #inc…… 题解列表 2018年10月22日 0 点赞 0 评论 696 浏览 评分:0.0
数据结构-八进制数 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>#include<iostream>#include<algorithm>#include<string>#include<…… 题解列表 2018年10月22日 1 点赞 0 评论 1281 浏览 评分:0.0
蓝桥杯算法训练VIP-数组查找及替换 (C++代码) 摘要:解题思路:按题目要求先删除数组中能被b整除的,然后再排序,最后再输出。注意事项:输出时注意如果在65-90之间,则输出对于的字母,否则原样输出数字。参考代码:#include<bits/stdc++.…… 题解列表 2018年10月22日 0 点赞 0 评论 435 浏览 评分:0.0
蓝桥杯算法训练VIP-字符删除 (C语言代码) 摘要:#include "stdafx.h"#include "string.h"int main(){ char str[20] = { 0 }, ch, str2[20] = {0}; int i,le…… 题解列表 2018年10月23日 0 点赞 0 评论 534 浏览 评分:0.0