蓝桥杯算法提高VIP-输出九九乘法表 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ cout<<" Nine-by-nine Multipli…… 题解列表 2022年05月08日 0 点赞 0 评论 287 浏览 评分:2.0
蓝桥杯算法提高VIP-输出正反三角形 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main() { int a, b; cin >> a >>…… 题解列表 2022年05月08日 0 点赞 0 评论 231 浏览 评分:2.0
c++格子刷油漆 摘要:解题思路:https://www.freesion.com/article/4385447958/参考代码:#include<iostream> using namespace std; int …… 题解列表 2022年05月08日 0 点赞 0 评论 437 浏览 评分:2.0
题解 1681: 数据结构-行编辑程序 stack 摘要:#include<iostream> #include<stack> #include<string> using namespace std; int main() { stri…… 题解列表 2022年05月25日 0 点赞 0 评论 183 浏览 评分:2.0
对矩阵二维数组还是不是很熟悉啊 摘要:解题思路:注意事项:折腾了这么久,不懈题解对不起自己看时间一道题也高了快一个小时了参考代码:##while True:## n=int(input())## lh=[]## for …… 题解列表 2022年05月27日 0 点赞 0 评论 270 浏览 评分:2.0
信息学奥赛一本通T1598-最大连续和-题解(各语言代码) 摘要:题意为求区间和的最大值 可分为两步解决:第一步求区间和,第二步求区间最大值 区间求和最高效的方式是前缀和,而区间最值可以用单调队列解决 时间复杂度O(n),空间复杂度O(m) **C++**…… 题解列表 2022年06月03日 0 点赞 0 评论 589 浏览 评分:2.0
思维题-解谜游戏 摘要:分为四组,组内互换组间不能互换,因此每组每种颜色数量必为1/4 ```cpp // 外圈:1 2 3 | 4 5 6 | 7 8 9 | 10 11 12 // 中圈:1 2 | 3 4…… 题解列表 2022年06月10日 0 点赞 0 评论 381 浏览 评分:2.0
1032: [编程入门]自定义函数之字符串连接 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { char st; while((st=getchar())!=EOF){ if(st==…… 题解列表 2022年06月13日 0 点赞 0 评论 196 浏览 评分:2.0
C语言入门scanf和printf,浮点数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ double F,T; scanf("%lf",&F); T=5.0*(F-32.0)/9.0;…… 题解列表 2022年06月20日 0 点赞 0 评论 206 浏览 评分:2.0
分段函数(if简单应用) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,y; scanf("%d",&x); if(x<1) y=x; el…… 题解列表 2022年06月20日 0 点赞 0 评论 183 浏览 评分:2.0