纯粹手贱,不能理解,没有关系 摘要:解题思路:纯粹手贱,不能理解,没有关系注意事项:前方高能,注意避让参考代码:#include<stdio.h>int main(){ int a[10] = { 0 }; int b[10] = {0…… 题解列表 2022年04月29日 0 点赞 0 评论 342 浏览 评分:0.0
二级C语言-阶乘数列 摘要:解题思路:用计算机算出答案,再输出注意事项:没有参考代码:#include<bits/stdc++.h>using namespace std;int main(){ cout<<"2.74e+32"…… 题解列表 2022年04月29日 0 点赞 0 评论 410 浏览 评分:0.0
二级C语言-统计字符 摘要:解题思路:暴力注意事项:没有参考代码:#include<bits/stdc++.h>using namespace std;string s;long long yw,kg,sz,qt;int mai…… 题解列表 2022年04月29日 0 点赞 0 评论 285 浏览 评分:0.0
三个数找最大值 摘要:解题思路:利用max快速找最大值注意事项:max的格式是max(a,b);参考代码:#include<bits/stdc++.h>using namespace std;int a,b,c;int m…… 题解列表 2022年04月29日 0 点赞 0 评论 297 浏览 评分:0.0
三个数字的排序 摘要:解题思路:利用数组+sort进行排序注意事项:注意数组的下标参考代码:#include<iostream>#include<fstream>#include<algorithm>using names…… 题解列表 2022年04月29日 0 点赞 0 评论 351 浏览 评分:0.0
二级C语言-等差数列 摘要:解题思路:直接模拟注意事项:要用long long参考代码:#include<bits/stdc++.h>using namespace std;long long n,s,t=2;int main(…… 题解列表 2022年04月29日 0 点赞 0 评论 227 浏览 评分:0.0
三个字符串的排序 摘要:解题思路:直接用short注意事项:没有参考代码:#include<bits/stdc++.h>using namespace std;string s[8];int main(){ for(i…… 题解列表 2022年04月29日 0 点赞 0 评论 353 浏览 评分:0.0
编写题解 1494: 蓝桥杯算法提高VIP-企业奖金发放 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> using namespace std; int main() { double a; ci…… 题解列表 2022年04月29日 0 点赞 0 评论 363 浏览 评分:0.0
编写题解 1511: 蓝桥杯算法提高VIP-复数求和 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int a,b; int sum1,s…… 题解列表 2022年04月29日 0 点赞 0 评论 405 浏览 评分:0.0
1831: 蓝桥杯2015年第六届真题-机器人繁殖 摘要:解题思路:注意事项:参考代码:n,s=map(int,input().split()) def f(n,x): ls=[x] for i in range(n): …… 题解列表 2022年04月29日 0 点赞 0 评论 495 浏览 评分:6.0