判断第几天 (C++代码)(不好玩) 摘要:注意事项: 不好玩。参考代码:#include<bits/stdc++.h> using namespace std; int is(int num) { if ((n…… 题解列表 2018年06月09日 0 点赞 0 评论 1654 浏览 评分:0.0
Minesweeper (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>int main(){ int row,col,field=0; int i,j,k,l,i1,j1…… 题解列表 2018年06月09日 0 点赞 0 评论 2054 浏览 评分:0.0
蓝桥杯算法训练VIP-简单加法(基本型) (C++代码)(不好玩) 摘要:注意事项: 不好玩。参考代码:#include<bits/stdc++.h> using namespace std; int is(int i1, int i2…… 题解列表 2018年06月09日 0 点赞 0 评论 1494 浏览 评分:0.0
蓝桥杯算法训练VIP-筛选号码 (C++代码)(不好玩) 摘要:注意事项: 不好玩。参考代码:#include<bits/stdc++.h> using namespace std; int is(int n, int m) { int …… 题解列表 2018年06月09日 0 点赞 0 评论 1167 浏览 评分:0.0
简单的数学题 (C++代码)(不好玩) 摘要:注意事项: 不好玩。参考代码:#include<bits/stdc++.h> using namespace std; int main() { int A = 3, B =…… 题解列表 2018年06月09日 0 点赞 0 评论 1681 浏览 评分:0.0
C二级辅导-求偶数和 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int N,n,sum; scanf("%d",&N); while(N--){ sc…… 题解列表 2018年06月09日 0 点赞 0 评论 735 浏览 评分: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 评论 912 浏览 评分:0.0
C二级辅导-同因查找 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int N; for(N=10;N<=1000;N++) { if(…… 题解列表 2018年06月09日 0 点赞 0 评论 802 浏览 评分:0.0
蓝桥杯算法提高VIP-质数的后代 (C++代码) 摘要:解题思路: 啊,筛表好笨啊。参考代码:#include<bits/stdc++.h> using namespace std; typedef long long LL; cons…… 题解列表 2018年06月09日 0 点赞 0 评论 1157 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.7 (C++代码) 摘要:解题思路:循环暴力破解注意事项:我这里用到的变量有点多,所以看着有点乱,仔细看还是可以看得懂的。参考代码:#include<iostream>using namespace std;int main(…… 题解列表 2018年06月09日 0 点赞 0 评论 843 浏览 评分:0.0