蓝桥杯历届试题-打印十字图 (C语言代码) 摘要:解题思路:模拟注意事项:参考代码:#include<iostream> using namespace std;#include<string.h>int main(){ char a[130][1…… 题解列表 2018年03月09日 1 点赞 0 评论 1373 浏览 评分:0.0
蓝桥杯历届试题-打印十字图 (C语言代码) 摘要:解题思路:注意事项:参考代码:/*题目描述历届试题 打印十字图 时间限制:1.0s 内存限制:256.0MB 问题描述 小明为某机构设计了一个十字型的徽标(并非红十字会啊),如下…… 题解列表 2018年03月08日 1 点赞 1 评论 1554 浏览 评分:9.9
蓝桥杯算法提高VIP-不同单词个数统计 (C语言代码) 摘要:解题思路:先识别单词,再统计注意事项:参考代码:#include<stdio.h>#include<string.h>#define MAX 1000int main(){ char str[M…… 题解列表 2018年03月08日 0 点赞 0 评论 1534 浏览 评分:0.0
罗列完美数 (C语言代码) 摘要:解题思路:注意事项:大循环之后要将sum归0参考代码:int main(){ int i,N,X,sum; sum=0; scanf("%d",&N); for(X=1;X<N…… 题解列表 2018年03月08日 1 点赞 0 评论 1104 浏览 评分:0.0
蓝桥杯算法提高VIP-寻找三位数 (C++代码) 摘要:#include<iostream> #include<algorithm> using namespace std; int judge(int i,int j,int k){ in…… 题解列表 2018年03月08日 1 点赞 0 评论 2209 浏览 评分:0.0
蓝桥杯基础练习VIP-龟兔赛跑预测 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int num[1000005],nums=0;int main(){ in…… 题解列表 2018年03月08日 0 点赞 0 评论 1273 浏览 评分:0.0
蓝桥杯基础练习VIP-回形取数 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int num[1000005],nums=0;int main(){ in…… 题解列表 2018年03月08日 0 点赞 0 评论 1098 浏览 评分:0.0
蓝桥杯算法提高VIP-盾神与积木游戏 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.ArrayList; import java.util.Scanner; public class 积木游戏 { public …… 题解列表 2018年03月08日 0 点赞 3 评论 1203 浏览 评分:8.7
IP判断 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class A1116 { public static void main(String args[]) …… 题解列表 2018年03月08日 0 点赞 0 评论 1879 浏览 评分:0.0
求圆的面积 (C语言代码) 摘要:解题思路:注意事项:参考代码:/*题目很简单,已知半径r,求一个圆的面积是多大。*/#include <stdio.h>#define P 3.14159265358979int main() { d…… 题解列表 2018年03月08日 2 点赞 5 评论 4193 浏览 评分:8.8