1026: [编程入门]数字逆序输出 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main() { int a[10] = { 0,0,0,0,0,0,0,0,0,0 },i=9; scanf("%d%d%d%…… 题解列表 2023年07月19日 0 点赞 0 评论 202 浏览 评分:0.0
1024: [编程入门]矩阵对角线求和 摘要:解题思路:一眼看出结构注意事项:参考代码:#include<stdio.h>int main() { int a[9] = { 0,0,0,0,0,0,0,0,0 },i=0,c=0; scanf("…… 题解列表 2023年07月19日 0 点赞 0 评论 205 浏览 评分:0.0
3072: 括弧匹配检验 摘要:# 栈问题 > https://www.programmercarl.com/0020.%E6%9C%89%E6%95%88%E7%9A%84%E6%8B%AC%E5%8F%B7.html#%E8…… 题解列表 2023年07月19日 0 点赞 0 评论 429 浏览 评分:0.0
STL :蓝桥杯算法提高VIP-队列操作 摘要:# STL queue ```c++ #include #include using namespace std; auto main()->int { queue num…… 题解列表 2023年07月19日 0 点赞 0 评论 312 浏览 评分:0.0
石头剪刀布 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int a[10000000],b[10000000];int main(){ …… 题解列表 2023年07月19日 0 点赞 0 评论 212 浏览 评分:0.0
1099: 校门外的树 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int a[10000000];int main(){ int l,m,su…… 题解列表 2023年07月19日 0 点赞 0 评论 250 浏览 评分:0.0
1099: 校门外的树 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int l,m,tree[10000000],s,e,sum=0;int main…… 题解列表 2023年07月19日 0 点赞 0 评论 424 浏览 评分:0.0
校门外的坤 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>int l,m,tree[10000000];using namespace std;int main(){ int…… 题解列表 2023年07月19日 0 点赞 0 评论 254 浏览 评分:0.0
余数相同问题(c++) 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b,c; cin>>a>>b>>c; int …… 题解列表 2023年07月19日 0 点赞 0 评论 376 浏览 评分:0.0
题解 3012: 分苹果 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>int main(){ int n; scanf("%d",&n); printf("%ld",(n+1)…… 题解列表 2023年07月20日 0 点赞 0 评论 283 浏览 评分:0.0