蓝桥杯算法提高VIP-分数统计 (C++代码) 摘要:写的不好,见谅!参考代码:#include <iostream> #include <algorithm> using namespace std; bool cmp(int a,int b) …… 题解列表 2018年02月27日 1 点赞 0 评论 832 浏览 评分:0.0
A+B for Input-Output Practice (IV) (C语言代码) 摘要:解题思路:知道你们都会,就是看着没有JAVA的题解,感觉不是太好,身为菜鸟的我补上。注意事项:比着葫芦画瓢。参考代码:import java.util.Scanner;public class 问题1…… 题解列表 2018年02月28日 0 点赞 0 评论 767 浏览 评分:0.0
蓝桥杯基础练习VIP-时间转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ long int t; scanf("%ld",&t); long int …… 题解列表 2018年02月28日 1 点赞 0 评论 739 浏览 评分:0.0
两种方法 摘要: //方法一/*#include <stdio.h>#define space ' 'void output(char *);int main(void){ …… 题解列表 2018年02月28日 0 点赞 0 评论 786 浏览 评分:0.0
哥德巴赫曾猜测 (C语言代码) 摘要:#include <stdio.h>int main(){ int i,a,b,c,n,count=0,flag1,flag2; scanf("%d",&n); if(n%2=…… 题解列表 2018年02月28日 0 点赞 0 评论 890 浏览 评分:0.0
简单的事情 (C语言代码) 摘要:#include <stdio.h>int main(){ int i,n,m; float s,s1,s2; while(scanf("%d%d",&n,&m)!=EOF) …… 题解列表 2018年02月28日 0 点赞 0 评论 577 浏览 评分:0.0
十->二进制转换 (C语言代码) 摘要:解题思路:运用递归的思路。注意事项:参考代码:#include<stdio.h>#include<math.h>void binary(int);int main(void){ int n; whil…… 题解列表 2018年02月28日 0 点赞 0 评论 1715 浏览 评分:0.0
蓝桥杯历届试题-核桃的数量 (C语言代码) 摘要:解题思路: 求a1,a2,...,an的最小公倍数,可以求a1,a2的最小公倍数b1,再求b1,a3的最小公倍数b2,...,直到求出b(n-2),an的最小公倍数b(n-1),则b(n-1)是…… 题解列表 2018年02月28日 0 点赞 0 评论 1121 浏览 评分:0.0
花落的新手代码(C) 摘要:解题思路:注意事项:参考代码#include<stdio.h> #include<stdlib.h> #include<ctype.h> #include<string.h> #define …… 题解列表 2018年02月28日 0 点赞 0 评论 1370 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.9 (C语言代码)指针自增得注意 摘要:#include <stdio.h>#include <ctype.h>void calculate(int *,int *,int *,int *);void main(void){ int …… 题解列表 2018年02月28日 0 点赞 0 评论 827 浏览 评分:0.0