小九九 (C++代码) 摘要:#include"bits/stdc++.h" using namespace std; int main() { for(int i=1;i<=9;i++) { for(int j…… 题解列表 2018年06月11日 1 点赞 0 评论 1766 浏览 评分:7.0
蓝桥杯算法提高- c++_ch02_02 (C++代码) 摘要:#include"bits/stdc++.h" using namespace std; int main() { int a,b; char c; cin>>a>>b>>c; …… 题解列表 2018年06月11日 1 点赞 0 评论 1785 浏览 评分:0.0
蓝桥杯算法提高- c++_ch02_03 (C++代码) 摘要:解题思路:找出所有能出现的结果即可 #include"bits/stdc++.h" using namespace std; int main() { int a,b; cin>>a>…… 题解列表 2018年06月11日 1 点赞 0 评论 1523 浏览 评分:8.0
求输入数据绝对值 (C++代码) 摘要:注意事项:注意输入和输出类型即可 #include"bits/stdc++.h" using namespace std; int main() { float n; while(ci…… 题解列表 2018年06月11日 1 点赞 0 评论 1501 浏览 评分:9.9
蓝桥杯基础练习VIP-分解质因数 (C++代码) 摘要:#include"bits/stdc++.h" using namespace std; int is(int x) { if(x==1) return 0; for(int i=2…… 题解列表 2018年06月11日 3 点赞 0 评论 1923 浏览 评分:0.0
蓝桥杯基础练习VIP-字符串对比 (C++代码) 摘要:解题思路:首先判断字符串的长度,如果不等则直接输出1,如果相等则继续判断,如果两个字符串完全相等, 则输出2,不等则继续判断,将大写字母转换成小写字母后两个字符串相等,则输出3,如果上述条件都不满足…… 题解列表 2018年06月11日 2 点赞 0 评论 1140 浏览 评分:0.0
蓝桥杯算法提高VIP-数组输出 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> #include<algorithm> using namespace std; struc…… 题解列表 2018年06月11日 0 点赞 0 评论 2224 浏览 评分:0.0
蓝桥杯算法提高VIP-字符串比较 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<string> using namespace std; int main() { string s…… 题解列表 2018年06月11日 0 点赞 0 评论 1094 浏览 评分:0.0
蓝桥杯算法提高VIP-企业奖金发放 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> using namespace std; const int c=100000; int …… 题解列表 2018年06月10日 0 点赞 0 评论 1087 浏览 评分:0.0
P1005 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<algorithm> using namespace std; const int Nmax=105,Vma…… 题解列表 2018年06月10日 0 点赞 0 评论 1421 浏览 评分:0.0