蓝桥杯算法提高- c++_ch02_02 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; char c; cin>>a>>b…… 题解列表 2019年01月20日 0 点赞 0 评论 645 浏览 评分:0.0
蓝桥杯算法提高VIP-三个整数的排序 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;int main(){ int a[3]; …… 题解列表 2019年01月20日 0 点赞 0 评论 926 浏览 评分:0.0
蓝桥杯算法提高VIP-约数个数 (C++代码) 摘要:解题思路:在1到输入的数(包括端点值)找输入的数可以整除的数并将个数记录;注意事项:参考代码:#include<iostream>using namespace std;int main(){ i…… 题解列表 2019年01月20日 1 点赞 0 评论 966 浏览 评分:9.9
C语言程序设计教程(第三版)课后习题9.10 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[1000]; int s,i…… 题解列表 2019年01月20日 6 点赞 0 评论 1222 浏览 评分:0.0
震宇大神的杀毒软件 (C++代码) 摘要:解题思路:C++Vector容器求解。注意事项:参考代码:#include <iostream> #include <algorithm> #include <vector> using nam…… 题解列表 2019年01月19日 0 点赞 0 评论 1303 浏览 评分:7.6
ACM水题 之 大神老白 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int a,num; while(~scanf("%d",&a)) { int su…… 题解列表 2019年01月19日 0 点赞 0 评论 1162 浏览 评分:0.0
ACM水题 之 妹子杀手的故事 (C语言代码) 摘要:解题思路:多选输入:while(~scanf("%d%d",&a,&b));结束条件a为0 ,b为0。注意事项:参考代码:#include <stdio.h> int main() { int…… 题解列表 2019年01月19日 0 点赞 0 评论 1005 浏览 评分:0.0
P1000 (一句代码不用写!) 摘要:解题思路:真的一句代码不用写,编辑器默认的代码复制过来就能用。注意事项:学会复制粘贴就可以。参考代码:#include<stdio.h> int main() { int a,b; …… 题解列表 2019年01月19日 0 点赞 0 评论 1055 浏览 评分:6.7
优质题解 蓝桥杯2013年第四届真题-核桃的数量 (C语言代码) 摘要:解题思路:本题要求: 各组的核桃数量必须相同 2. 各组内必须能平分核桃(当然是不能打碎的) 3. 尽量提供满足1,2条件的最小数量(节约闹革命嘛) 注意事项:综上所述知本题的实质是求三个数的最…… 题解列表 2019年01月19日 1 点赞 1 评论 1306 浏览 评分:9.9
蛇行矩阵 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int i,j,n,a; while(scanf("%d", &n) != EOF){ a = 0; f…… 题解列表 2019年01月19日 0 点赞 0 评论 833 浏览 评分:0.0