蓝桥杯算法训练VIP-提货单 (C语言代码) 摘要:#include<stdio.h>typedef struct prut { char mc[101]; double dj; int sl;}prut;int main(){ int n,i;…… 题解列表 2018年02月09日 1 点赞 0 评论 965 浏览 评分:2.0
明明的随机数 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int a[101];int n,sum;void swap(int *a,int *b){ int t; t=*a;*a=*b;*b=…… 题解列表 2018年02月09日 0 点赞 0 评论 1092 浏览 评分:0.0
开心的金明 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int v[30],p[30];long long x[30001];int main(){ int n,m,i,j,k; scanf(…… 题解列表 2018年02月09日 0 点赞 0 评论 1143 浏览 评分:0.0
蓝桥杯算法训练VIP-阶乘 (C语言代码) 摘要:#include<stdio.h>#include<math.h>int main(){ int n,i; int j=1; scanf("%d",&n); for(i=2;i<=n;i++) { …… 题解列表 2018年02月09日 1 点赞 0 评论 1025 浏览 评分:0.0
纪念品分组 (C语言代码) 摘要:解题思路:手写快排+贪心注意事项:参考代码:#include<stdio.h>int b[30001];void quiksort(int a[],int low,int high){ int …… 题解列表 2018年02月09日 0 点赞 0 评论 965 浏览 评分:0.0
不容易系列2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int n,sum;int a[21],b[21];void dfs(int k){ int i,j,l,p; if(k>n) { s…… 题解列表 2018年02月09日 0 点赞 0 评论 595 浏览 评分:0.0
【夏禾】题解1068:2005年春浙江省计算机等级考试二级C 编程题(2) 摘要:解题思路:循环将符合条件的数值输出 熟悉函数使用和调用 以及循环的使用注意事项:还没想好参考代码:#include<stdio.h>#include<stdlib.h>int CtoF(int in…… 题解列表 2018年02月09日 2 点赞 0 评论 726 浏览 评分:0.0
【夏禾】题解1067:2005年春浙江省计算机等级考试二级C 编程题(1) 摘要:解题思路:将输入的数字进行具体范围的判断 返回相应的内容注意事项:fabs 只能操作浮点数 float double 对此题无精度影响参考代码:#include<stdio.h>#include<s…… 题解列表 2018年02月09日 0 点赞 0 评论 1044 浏览 评分:0.0
【夏禾】题解1016:C语言程序设计教程(第三版)课后习题6.6 摘要:解题思路:遍历100 -> 999 的每个数 , 取出其中符合要求的数。包括对每个数 各个位的提取。(百位,十位 ,个位)。:D注意事项:会使用for循环 , 对编程语言中 整除 和 取余有一定初步…… 题解列表 2018年02月09日 1 点赞 0 评论 1121 浏览 评分:0.0
愚蠢的摄影师 (C语言代码)超时了 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int n,sum;int a[56],b[56];void dfs(int k){ int i,j,t…… 题解列表 2018年02月09日 0 点赞 0 评论 1374 浏览 评分:0.0