编写题解 2233: 蓝桥杯算法训练-图形显示 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){long long n;cin>>n;…… 题解列表 2025年01月12日 1 点赞 0 评论 170 浏览 评分:0.0
编写题解 2233: 蓝桥杯算法训练-图形显示 摘要:解题思路:注意事项:两个循环参考代码:#include <iostream>using namespace std;int main(){ long long n…… 题解列表 2025年01月12日 0 点赞 0 评论 128 浏览 评分:0.0
题解 2233: 蓝桥杯算法训练-图形显示 摘要:解题思路:注意事项:注意换行写到第一个循环中参考代码:#include<bits/stdc++.h>using namespace std;int main(){ long l…… 题解列表 2025年01月12日 0 点赞 0 评论 137 浏览 评分:0.0
题解 2096: 打印平行四边形 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ long long n;&nb…… 题解列表 2025年01月12日 0 点赞 0 评论 124 浏览 评分:0.0
题解 2819: 数字反转 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ long long n,sum=…… 题解列表 2025年01月12日 0 点赞 0 评论 234 浏览 评分:0.0
危险系数 dfs 摘要: #include #include using namespace std; int n,m; //点以及边信息 int map[10…… 题解列表 2025年01月11日 0 点赞 2 评论 426 浏览 评分:10.0
c++++++++++++++++++++++++ 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int b[100];bool jud(int k){ if (k == 2)re…… 题解列表 2025年01月11日 0 点赞 0 评论 259 浏览 评分:0.0
2819: 数字反转题解 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ long long n,sum=0; cin &…… 题解列表 2025年01月11日 0 点赞 0 评论 206 浏览 评分:0.0
1009题解,用循环做 摘要:解题思路和注意事项:首先要明白每个要求的操作思路,为了清楚点我们直接举具体的数:123第一个要求几位数,那么就是将123除以10,123是三位数字,123能除以10两次,那么将变量count初始化为1…… 题解列表 2025年01月11日 20 点赞 0 评论 1676 浏览 评分:10.0
极简[编程入门]自定义函数之字符串反转 摘要:解题思路:无注意事项:无参考代码:s = input()print([s::-1]…… 题解列表 2025年01月10日 1 点赞 0 评论 497 浏览 评分:0.0