蓝桥杯算法训练VIP-判定字符位置 (Java代码) 摘要:解题思路:注意事项:没有对的,却说不对啊。参考代码:public static void main(String[] args) { Scanner sc = new Scanner(System.…… 题解列表 2018年01月22日 1 点赞 0 评论 753 浏览 评分:2.0
蓝桥杯算法提高VIP-模拟计算器 (Java代码) 摘要:解题思路:注意事项:参考代码:public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a…… 题解列表 2018年01月22日 1 点赞 0 评论 887 浏览 评分:0.0
蓝桥杯算法提高VIP-班级排名 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<malloc.h>//对成绩进行排名,并输出DaDa的排名int paiming(…… 题解列表 2018年01月22日 0 点赞 0 评论 1121 浏览 评分:0.0
蓝桥杯基础练习VIP-完美的代价 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int N; // 字符串长度 cin >> N; char…… 题解列表 2018年01月22日 0 点赞 0 评论 2870 浏览 评分:9.9
蓝桥杯算法训练VIP-整除问题 (Java代码) 摘要:解题思路:注意事项:参考代码:Scanner sc =new Scanner(System.in); int min = sc.nextInt(); int max = sc.nextInt();…… 题解列表 2018年01月22日 2 点赞 0 评论 762 浏览 评分: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 评论 786 浏览 评分:0.0
蓝桥杯算法训练VIP-字符删除 (C语言代码) 摘要:解题思路:注意事项:确保输出的字符串最后带有结束记号'\0'参考代码:#include <stdio.h>#include <strings.h>int main(){ int …… 题解列表 2018年01月22日 0 点赞 0 评论 840 浏览 评分:6.0
蓝桥杯算法训练VIP-数位分离 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <strings.h>int main(){ int m; scanf("%d",&m); if(…… 题解列表 2018年01月22日 0 点赞 0 评论 847 浏览 评分:2.0
蓝桥杯算法训练VIP-数对 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <strings.h>int main(){ int m,i; scanf("%d",&m); f…… 题解列表 2018年01月22日 0 点赞 0 评论 619 浏览 评分: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 评论 960 浏览 评分:0.0