哥德巴赫曾猜测-题解(Python代码) 简单易懂! 摘要:**代码如下:** x=int(input("输入大于6的偶数")) t=[]#存放所有的素数 if x>6 and xb: return …… 题解列表 2019年12月07日 0 点赞 1 评论 1241 浏览 评分:6.0
蓝桥杯基础练习-数列排序-满分题解!! 摘要: #include int a[300]; void kuaisu(int x,int y){ if(xk ){ j--; } …… 题解列表 2019年12月08日 0 点赞 0 评论 994 浏览 评分:6.0
[编程入门]自定义函数之数字后移-题解(C语言代码) 摘要:#include int main() { int n,i,a[10],c; scanf("%d",&n); for(i=0;i…… 题解列表 2019年12月09日 0 点赞 0 评论 722 浏览 评分:6.0
蓝桥杯2018年第九届真题-递增三元组-题解(C++代码) 摘要: 数据有问题 ```cpp #ifndef LOCAL #include #endif typedef long long LL; using namespace std; …… 题解列表 2019年12月10日 0 点赞 0 评论 977 浏览 评分:6.0
登陆验证问题(二)-题解(C语言代码) 自我感觉应用了模块化编程的思想 摘要:#include #include int check(char *a,char *b) { char user[]={"dotcpp"}; char passwor…… 题解列表 2019年12月10日 0 点赞 0 评论 739 浏览 评分:6.0
蛇行矩阵-题解(C++代码)打表法 摘要:这题后台数据很小 n最大是5 建议加强 所以我们可以打表过 #include using namespace std;//时间复杂度比较大n*100*100 int n,a[100…… 题解列表 2019年12月10日 0 点赞 0 评论 1136 浏览 评分:6.0
弟弟的作业-题解(Python代码)超级简单,易懂!!! 摘要:**代码如下:** n=0 while True: try: x=input() x=x.replace(…… 题解列表 2019年12月11日 0 点赞 1 评论 1463 浏览 评分:6.0
[编程入门]三个数找最大值-题解(C语言代码) 摘要:#include void main() {int a,b,c,m; scanf("%d%d%d",&a,&b,&c); if(a>b) m=a; else m=b; if(c>m)…… 题解列表 2019年12月11日 0 点赞 0 评论 1075 浏览 评分:6.0
Kanna-舍罕王的失算-C 摘要:象棋中一共64格 而两格又是之前的两倍,所以是 2^i 次方 代码实现 #include #include int main(void){ /…… 题解列表 2019年12月12日 0 点赞 1 评论 1278 浏览 评分:6.0
【密码】-题解(C++代码) 思路简单 摘要: //1.判断长度是否符合标准 //2.遍历字符串,设置了type1~4表示四种条件的满足情况,若在遍历过程中发现符合某种条件就设置它对应的type为1,遍历结束后将type1~4相加可以得…… 题解列表 2019年12月13日 0 点赞 0 评论 834 浏览 评分:6.0