蓝桥杯算法训练VIP-友好数 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int m,n; scanf("%d%d",&m,&n); int i,j,sum1=0,s…… 题解列表 2018年01月22日 0 点赞 0 评论 825 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>#define MIN_POS 1e-6#define MAX_NEG (-1e-6)//μ…… 题解列表 2018年01月22日 0 点赞 0 评论 947 浏览 评分:0.0
蓝桥杯算法提高VIP-模拟计算器 (Java代码) 摘要:解题思路:注意事项:参考代码:public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a…… 题解列表 2018年01月22日 1 点赞 0 评论 831 浏览 评分:0.0
蓝桥杯算法提高VIP-班级排名 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<malloc.h>//对成绩进行排名,并输出DaDa的排名int paiming(…… 题解列表 2018年01月22日 0 点赞 0 评论 1018 浏览 评分:0.0
蓝桥杯算法训练VIP-整除问题 (Java代码) 摘要:解题思路:注意事项:参考代码:Scanner sc =new Scanner(System.in); int min = sc.nextInt(); int max = sc.nextInt();…… 题解列表 2018年01月22日 2 点赞 0 评论 710 浏览 评分:0.0
蓝桥杯算法训练VIP-反置数 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int reverse(int n){ int k,t=0,s; k=n; whi…… 题解列表 2018年01月22日 0 点赞 0 评论 715 浏览 评分:0.0
蓝桥杯算法训练VIP-数对 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <strings.h>int main(){ int m,i; scanf("%d",&m); f…… 题解列表 2018年01月22日 0 点赞 0 评论 557 浏览 评分:0.0
蓝桥杯算法训练VIP-数的统计 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <strings.h>int main(){ int b[1000001]={0}; int i,t,n…… 题解列表 2018年01月22日 0 点赞 0 评论 834 浏览 评分:0.0
蓝桥杯算法训练VIP-数组查找及替换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <strings.h>int main(){ int i,j=1,m,n,t=0,k; int a[11…… 题解列表 2018年01月22日 0 点赞 0 评论 689 浏览 评分:0.0
蓝桥杯算法训练VIP-斜率计算 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <strings.h>int main(){ float x1,y1,x2,y2; scanf("%f%…… 题解列表 2018年01月22日 0 点赞 0 评论 641 浏览 评分:0.0