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
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
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
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 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <math.h> int main() { double in,out; scanf("%lf"…… 题解列表 2018年10月22日 2 点赞 0 评论 697 浏览 评分: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 评论 634 浏览 评分:2.0
蓝桥杯2013年第四届真题-错误票据 (C++代码) 摘要:解题思路:注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS #include <iostream> #include <string> #include <…… 题解列表 2018年10月22日 0 点赞 0 评论 621 浏览 评分:0.0
蓝桥杯算法训练VIP-集合运算 (C++代码) 摘要:#include<bits/stdc++.h> using namespace std; int main() { int n,m; set<int> a,b,c,d; cin>>n…… 题解列表 2018年10月22日 0 点赞 0 评论 542 浏览 评分:2.0
文科生的悲哀 (C语言代码) 摘要:解题思路:没想到太多,直接莽出来= = 。时限超了,还是太菜了。注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int Matrix67(int n, i…… 题解列表 2018年10月22日 1 点赞 0 评论 708 浏览 评分:0.0
蓝桥杯算法提高VIP-统计单词数 (C语言代码) 摘要:解题思路:第一步,拆分字符串,并统计单词个数;第二步,求单词最大长度;第三步,按要求输出。注意事项:注意,统计单词个数时,全部转换为大写,再统计,否则会出错,本题中大小写算是一个单词。参考代码:#in…… 题解列表 2018年10月22日 0 点赞 0 评论 1140 浏览 评分:9.9