蓝桥杯历届试题-买不到的数目 (C语言代码) 摘要:解题思路:枚举所有可能的数字注意事项:参考代码:#include<stdio.h>int main(){ int a,b; scanf("%d%d",&a,&b); int ta,tb; for(in…… 题解列表 2018年02月24日 1 点赞 0 评论 1191 浏览 评分:0.0
P1078 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> #include<cmath> using namespace std; int …… 题解列表 2018年02月24日 0 点赞 0 评论 824 浏览 评分:9.9
汪汪的暗恋 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int t,n,i; scanf("%d",&t); while(t--) { scanf("%d",&n);…… 题解列表 2018年02月24日 1 点赞 0 评论 846 浏览 评分:9.9
蓝桥杯基础练习VIP-回形取数 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int b[201][201];int main(){ int n,m; int a[201][201]; int i,j,x,y,t;…… 题解列表 2018年02月24日 0 点赞 0 评论 1693 浏览 评分:0.0
字符串输入输出函数 (Java代码) 摘要:解题思路:注意事项:参考代码: import java.io.InputStream; import java.util.Scanner; public…… 题解列表 2018年02月24日 0 点赞 0 评论 1191 浏览 评分:9.9
C语言程序设计教程(第三版)课后习题10.3 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class p45 { public static void main(String[] args) { …… 题解列表 2018年02月24日 0 点赞 0 评论 1114 浏览 评分:0.0
蓝桥杯算法提高VIP-寻找三位数 (C语言代码)dfs 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int b[10];int a[10];void dfs(int n){ int i,j,s,ss,sss; if(n==10) { …… 题解列表 2018年02月24日 0 点赞 0 评论 1047 浏览 评分:0.0
蓝桥杯算法提高VIP-彩票 (C语言代码) 快快快 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int ans[7];int s[34];int main(){ int n,i,j,sum; int t; scanf("%d",&n…… 题解列表 2018年02月24日 0 点赞 0 评论 1058 浏览 评分:0.0
蓝桥杯算法提高VIP-产生数 摘要:解题思路:import java.math.BigInteger; import java.util.Scanner; public class Main { public stati…… 题解列表 2018年02月24日 1 点赞 0 评论 1167 浏览 评分:8.0
C语言程序设计教程(第三版)课后习题5.5 (C语言代码) 摘要:解题思路:题目不太难,理清思路就好注意事项:注意x的取值范围参考代码:#include<stdio.h>int main(){ int x,y; scanf("%d",&x); if(x<1) { …… 题解列表 2018年02月24日 0 点赞 0 评论 698 浏览 评分:0.0