C二级辅导-求偶数和 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int N,n,sum; scanf("%d",&N); while(N--){ sc…… 题解列表 2018年06月09日 0 点赞 0 评论 572 浏览 评分:0.0
简单的数学题 (C++代码)(不好玩) 摘要:注意事项: 不好玩。参考代码:#include<bits/stdc++.h> using namespace std; int main() { int A = 3, B =…… 题解列表 2018年06月09日 0 点赞 0 评论 1272 浏览 评分:0.0
青年歌手大奖赛_评委会打分 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<algorithm> using namespace std; const int M=105; int …… 题解列表 2018年06月09日 0 点赞 0 评论 1601 浏览 评分:9.9
判断第几天 (C++代码)(不好玩) 摘要:注意事项: 不好玩。参考代码:#include<bits/stdc++.h> using namespace std; int is(int num) { if ((n…… 题解列表 2018年06月09日 0 点赞 0 评论 1376 浏览 评分:0.0
蓝桥杯算法训练VIP-简单加法(基本型) (C++代码)(不好玩) 摘要:注意事项: 不好玩。参考代码:#include<bits/stdc++.h> using namespace std; int is(int i1, int i2…… 题解列表 2018年06月09日 0 点赞 0 评论 1204 浏览 评分:0.0
蓝桥杯算法训练VIP-筛选号码 (C++代码)(不好玩) 摘要:注意事项: 不好玩。参考代码:#include<bits/stdc++.h> using namespace std; int is(int n, int m) { int …… 题解列表 2018年06月09日 0 点赞 0 评论 955 浏览 评分: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 评论 1037 浏览 评分: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 评论 1609 浏览 评分:0.0
蓝桥杯算法训练VIP-装箱问题 (C++代码)(递归) 摘要: 只要知道递归出口就行了,状态转移方程很容易找。参考代码:#include<bits/stdc++.h> using namespace std; int DP(int volu…… 题解列表 2018年06月09日 0 点赞 0 评论 806 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题7.3 (C语言代码) 摘要:解题思路:先双重循环输入数据,再用while循环 计算注意事项:求和时 注意i和j的变化参考代码:#include<stdio.h>int main(){ int i,j; int s1=0,s2=0…… 题解列表 2018年06月09日 0 点赞 0 评论 905 浏览 评分:0.0