镜牙 ------C语言程序设计教程(第三版)课后习题8.6 (C语言代码) 摘要:解题思路:注意事项:参考代码: #include<stdio.h> #include<string.h> int main { int i,len1=0,len2=0; …… 题解列表 2019年03月05日 0 点赞 0 评论 970 浏览 评分:0.0
蓝桥杯历届试题-国王的烦恼 (Java代码) 摘要:解题思路:哪里有问题呀!只能过55%注意事项:参考代码:import java.util.Arrays;import java.util.Comparator;import java.util.Sca…… 题解列表 2019年03月05日 0 点赞 0 评论 1455 浏览 评分:0.0
蓝桥杯算法提高VIP-分苹果 (C++代码) 摘要:#include<iostream> #include<algorithm> using namespace std; const int maxn = 100001; int A[maxn]…… 题解列表 2019年03月05日 0 点赞 0 评论 724 浏览 评分:0.0
回文串 (Java代码) 摘要:解题思路:分割左右两边 注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(Strin…… 题解列表 2019年03月05日 0 点赞 0 评论 762 浏览 评分:0.0
文科生的悲哀 (C语言代码)递归和数组找规律两种方法解决 摘要:#include <stdio.h> #include <math.h> long sum(long x) { long a[10000]; a[0]=1; a[1…… 题解列表 2019年03月05日 0 点赞 0 评论 951 浏览 评分:0.0
方砖问题 (C语言代码)灵魂绘图解释 摘要:参考代码:#include <stdio.h> #include <math.h> int sum(int x) { int a[100],p=2; for(int i=2;…… 题解列表 2019年03月05日 0 点赞 0 评论 584 浏览 评分:0.0
junmu1048:C语言程序设计教程(第三版)看了不后悔 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<malloc.h> #include<string.h> int main() { int n,m,…… 题解列表 2019年03月05日 2 点赞 0 评论 1472 浏览 评分:0.0
【亲和数】 (C语言代码) 摘要:解题思路:感觉很简单,写个函数求约数和再将函数套进去注意事项:参考代码:#include<stdio.h>int glc(int c){ int i=0,sum=0; for(i=1;i<c;i++)…… 题解列表 2019年03月05日 0 点赞 0 评论 1292 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.9 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int M, N; float h = M, S = 0; //h…… 题解列表 2019年03月05日 1 点赞 0 评论 740 浏览 评分:0.0
蓝桥杯2016年第七届真题-路径之谜 (C++代码) 摘要:解题思路:首先这是题DFS,题目给出了几个限制条件,就和普通的DFS没什么区别吧注意事项:要记得判断箭数是否匹配参考代码:#include<bits/stdc++.h> using namespac…… 题解列表 2019年03月05日 0 点赞 0 评论 691 浏览 评分:0.0