【密码】 (C++代码) 摘要:解题思路:注意四个中的三个我用了暴力判断加sort排序巧妙解决四个中三个的问题注意事项:参考代码:#include <bits/stdc++.h> #include <iostream> usin…… 题解列表 2019年04月28日 0 点赞 0 评论 1064 浏览 评分:0.0
【出圈】 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int a[100]; int i,j,n,m,cnt,js; while(scanf("%…… 题解列表 2019年04月28日 0 点赞 0 评论 1502 浏览 评分:0.0
【明明的随机数】 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> #include <iostream> using namespace std; int main() { …… 题解列表 2019年04月28日 0 点赞 0 评论 968 浏览 评分:0.0
【求[X,Y]内被除3余1并且被除5余3的整数的和】 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> #include <iostream> using namespace std; int main() { …… 题解列表 2019年04月28日 0 点赞 0 评论 1587 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int n, i, j, a[6][6], b[6][6], k, t, …… 题解列表 2019年04月29日 0 点赞 0 评论 801 浏览 评分:0.0
2006年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float a; int x = 0, y = 0, z = 0; scanf("%f", &…… 题解列表 2019年04月29日 0 点赞 0 评论 1108 浏览 评分:0.0
2006年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>double fact(int k){ if(k == 0 || k == 1) return 1; else…… 题解列表 2019年04月29日 0 点赞 0 评论 946 浏览 评分:0.0
蓝桥杯算法提高VIP-前10名 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int a[2000]; int main() { int n,t; scanf("%d",&n); //输入 …… 题解列表 2019年04月29日 0 点赞 0 评论 1961 浏览 评分:0.0
蓝桥杯算法提高VIP-计算质因子 (C语言代码)所谓质因子 摘要:解题思路:所谓质因子就是 一个数字的因子中是质数的,比如说6中的因子有2,3,其中只有2,3是质数,而8的因子有2,4,但由于4不是质数,所以8的输出只有2.参考代码:#include<stdi…… 题解列表 2019年04月29日 0 点赞 0 评论 1067 浏览 评分:0.0
蓝桥杯算法提高VIP-前10名 (C语言代码)冒泡,选择,任选其一!! 摘要:解题思路:冒泡或者选择排序,先排好,再输出!!注意事项:无!!参考代码:#include<stdio.h>int main(){ int n,i,j,t,k; int a[210]; scanf("%…… 题解列表 2019年04月29日 1 点赞 0 评论 945 浏览 评分:0.0