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 评论 747 浏览 评分: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 评论 642 浏览 评分:0.0
字符逆序 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int main() { char arr[100]; int len,i…… 题解列表 2018年10月22日 2 点赞 0 评论 789 浏览 评分:0.0
蓝桥杯算法提高VIP-删除数组中的0元素 (C++代码) 摘要:解题思路:水题,开挂注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS #include <iostream> #include <string> #incl…… 题解列表 2018年10月22日 0 点赞 0 评论 659 浏览 评分:0.0
蓝桥杯历届试题-连号区间数 (C++代码) 摘要:解题思路:一开始题意理解错,思路是借鉴地表最强召唤兽的...注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS #include <iostream> #inc…… 题解列表 2018年10月22日 0 点赞 0 评论 796 浏览 评分:0.0
数据结构-八进制数 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>#include<iostream>#include<algorithm>#include<string>#include<…… 题解列表 2018年10月22日 1 点赞 0 评论 1386 浏览 评分:0.0
蓝桥杯算法训练VIP-数组查找及替换 (C++代码) 摘要:解题思路:按题目要求先删除数组中能被b整除的,然后再排序,最后再输出。注意事项:输出时注意如果在65-90之间,则输出对于的字母,否则原样输出数字。参考代码:#include<bits/stdc++.…… 题解列表 2018年10月22日 0 点赞 0 评论 500 浏览 评分: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 评论 591 浏览 评分:0.0
蓝桥杯算法训练VIP-斜率计算 (C语言代码) 摘要:#include "stdafx.h"int main(){ float x1, y1, x2, y2; double k; printf("input x1,y1 x2,y2 \n"); scan…… 题解列表 2018年10月23日 0 点赞 0 评论 791 浏览 评分:0.0
蓝桥杯算法训练VIP-最长字符串 (C语言代码) 摘要:#include "stdafx.h"#include "string.h"int main(){ char s[5][100] = { 0 }; int i,max=0,len,flag; for …… 题解列表 2018年10月23日 0 点赞 0 评论 966 浏览 评分:0.0