C二级辅导-同因查找 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int N; for(N=10;N<=1000;N++) { if(…… 题解列表 2018年06月09日 0 点赞 0 评论 905 浏览 评分: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 评论 1017 浏览 评分:0.0
C二级辅导-求偶数和 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int N,n,sum; scanf("%d",&N); while(N--){ sc…… 题解列表 2018年06月09日 0 点赞 0 评论 855 浏览 评分:0.0
简单的数学题 (C++代码)(不好玩) 摘要:注意事项: 不好玩。参考代码:#include<bits/stdc++.h> using namespace std; int main() { int A = 3, B =…… 题解列表 2018年06月09日 0 点赞 0 评论 1911 浏览 评分:0.0
青年歌手大奖赛_评委会打分 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<algorithm> using namespace std; const int M=105; int …… 题解列表 2018年06月09日 0 点赞 0 评论 2184 浏览 评分:9.9
判断第几天 (C++代码)(不好玩) 摘要:注意事项: 不好玩。参考代码:#include<bits/stdc++.h> using namespace std; int is(int num) { if ((n…… 题解列表 2018年06月09日 0 点赞 0 评论 1792 浏览 评分:0.0
蓝桥杯算法训练VIP-简单加法(基本型) (C++代码)(不好玩) 摘要:注意事项: 不好玩。参考代码:#include<bits/stdc++.h> using namespace std; int is(int i1, int i2…… 题解列表 2018年06月09日 0 点赞 0 评论 1703 浏览 评分:0.0
蓝桥杯算法训练VIP-筛选号码 (C++代码)(不好玩) 摘要:注意事项: 不好玩。参考代码:#include<bits/stdc++.h> using namespace std; int is(int n, int m) { int …… 题解列表 2018年06月09日 0 点赞 0 评论 1312 浏览 评分:0.0
蓝桥杯算法提高- c++_ch02_03 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ enum x{stone,cloth,scissors}; enum x a,b; scanf("%…… 题解列表 2018年06月09日 1 点赞 0 评论 1366 浏览 评分:9.9
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 评论 2277 浏览 评分:0.0