蓝桥杯算法训练VIP-筛选号码 (C++代码)(不好玩) 摘要:注意事项: 不好玩。参考代码:#include<bits/stdc++.h> using namespace std; int is(int n, int m) { int …… 题解列表 2018年06月09日 0 点赞 0 评论 1113 浏览 评分:0.0
简单的数学题 (C++代码)(不好玩) 摘要:注意事项: 不好玩。参考代码:#include<bits/stdc++.h> using namespace std; int main() { int A = 3, B =…… 题解列表 2018年06月09日 0 点赞 0 评论 1589 浏览 评分:0.0
C二级辅导-求偶数和 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int N,n,sum; scanf("%d",&N); while(N--){ sc…… 题解列表 2018年06月09日 0 点赞 0 评论 690 浏览 评分:0.0
C二级辅导-等差数列 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i=2,sum=0; scanf("%d",&n); while(n--)…… 题解列表 2018年06月09日 0 点赞 0 评论 864 浏览 评分:0.0
C二级辅导-同因查找 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int N; for(N=10;N<=1000;N++) { if(…… 题解列表 2018年06月09日 0 点赞 0 评论 780 浏览 评分:0.0
蓝桥杯算法提高VIP-质数的后代 (C++代码) 摘要:解题思路: 啊,筛表好笨啊。参考代码:#include<bits/stdc++.h> using namespace std; typedef long long LL; cons…… 题解列表 2018年06月09日 0 点赞 0 评论 1098 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.7 (C++代码) 摘要:解题思路:循环暴力破解注意事项:我这里用到的变量有点多,所以看着有点乱,仔细看还是可以看得懂的。参考代码:#include<iostream>using namespace std;int main(…… 题解列表 2018年06月09日 0 点赞 0 评论 805 浏览 评分:0.0
蓝桥杯基础练习VIP-高精度加法 (C++代码) 摘要:参考代码:#include<bits/stdc++.h> using namespace std; typedef long long LL; const LL BASE = 100000000…… 题解列表 2018年08月02日 0 点赞 0 评论 1136 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.10 (C语言代码) 摘要:解题思路:用字符数组来存放字符串,在a~z、A~Z之间的字符加一,当字符为‘z'和'Z'时,字符减去25,当字符为其它字符时,原字符数出。注意事项:输入字符串时,不能用scan…… 题解列表 2018年06月10日 0 点赞 0 评论 587 浏览 评分:0.0
P1005 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<algorithm> using namespace std; const int Nmax=105,Vma…… 题解列表 2018年06月10日 0 点赞 0 评论 1013 浏览 评分:0.0