蓝桥杯算法提高VIP-企业奖金发放 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> using namespace std; const int c=100000; int …… 题解列表 2018年06月10日 0 点赞 0 评论 735 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.6 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,max; printf("enter 3 integer numbers:");…… 题解列表 2018年06月11日 0 点赞 0 评论 556 浏览 评分:0.0
【计算两点间的距离】 (C语言代码) 摘要:#include<stdio.h> #include<math.h> int main() { double x1,y1,x2,y2; while(~scanf("%lf%lf%lf%l…… 题解列表 2018年06月11日 0 点赞 0 评论 927 浏览 评分:0.0
蓝桥杯算法提高VIP-字符串比较 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<string> using namespace std; int main() { string s…… 题解列表 2018年06月11日 0 点赞 0 评论 828 浏览 评分:0.0
蓝桥杯算法提高VIP-数组输出 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> #include<algorithm> using namespace std; struc…… 题解列表 2018年06月11日 0 点赞 0 评论 1731 浏览 评分:0.0
蓝桥杯基础练习VIP-报时助手 (C++代码) 摘要:解题思路:运用string定义数组保存0-20的英文,再储存30,40,50的英文储存到str[30],str[40],str[50], 再输入h,m,判断h,m是否小于等于20,如果小于则直接输出…… 题解列表 2018年06月14日 2 点赞 0 评论 1111 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.4 (C语言代码) 摘要:解题思路:递归注意事项DEV上测试并提交有效参考代码:#include <stdio.h>long int F(int n);int main(){ int n; scanf("%d",&n); if…… 题解列表 2018年06月11日 2 点赞 0 评论 856 浏览 评分:0.0
蓝桥杯基础练习VIP-字符串对比 (C++代码) 摘要:解题思路:首先判断字符串的长度,如果不等则直接输出1,如果相等则继续判断,如果两个字符串完全相等, 则输出2,不等则继续判断,将大写字母转换成小写字母后两个字符串相等,则输出3,如果上述条件都不满足…… 题解列表 2018年06月11日 2 点赞 0 评论 903 浏览 评分:0.0
蓝桥杯基础练习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 评论 1376 浏览 评分:0.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 评论 1209 浏览 评分:0.0