蓝桥杯算法训练VIP-整数平均值 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int n,a,t;int main(){ cin>>n; for(int i=0…… 题解列表 2022年05月16日 0 点赞 0 评论 374 浏览 评分:0.0
蓝桥杯算法训练VIP-链表数据求和操作 题解(c++懵逼题目) 摘要:解题思路:题目其实看得半懂半蒙!呵呵!我才不管那么多,直接用结构体完事!注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;struct lb…… 题解列表 2022年05月16日 0 点赞 0 评论 412 浏览 评分:0.0
蓝桥杯算法提高VIP-输出九九乘法表 题解(c++直接输入,简单啦) 摘要:解题思路:直接输出啦,还用说明么!注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int main(){ printf(" Nine-b…… 题解列表 2022年05月16日 0 点赞 0 评论 460 浏览 评分:0.0
信息学奥赛一本通T1325-循环比赛日程表-题解(各语言代码) 摘要:首先找到规律,矩阵是中心对称的 左上角和右下角相同,右上角和左下角相同  然…… 题解列表 2022年05月16日 0 点赞 0 评论 688 浏览 评分:6.0
ASCII码计算数字个数 摘要:解题思路:使用ASCII码来判断是否为数字字母之类的,应该算是一个比较笨的方法了。需要使用ord()来调出每个字符的ASCII码,然后根据0的ASCII为48,9为57来划定判断范围。当然了看了其他题…… 题解列表 2022年05月16日 0 点赞 0 评论 574 浏览 评分:0.0
A+B for Input-Output Practice (V) 摘要:#include void main() { int a=0,b=0,i=0,k,j=0,x; scanf("%d",&x); while(x--) { scanf("%…… 题解列表 2022年05月17日 0 点赞 0 评论 313 浏览 评分:0.0
A+B for Input-Output Practice (VI) 摘要:#include void main() { int a=0,b=0,i=0,k,j=0,x; while(~scanf("%d",&a)) { while(a--) …… 题解列表 2022年05月17日 0 点赞 0 评论 358 浏览 评分:0.0
A+B for Input-Output Practice 摘要:#include void main() { int a=0,b=0,s=0,i=0; scanf("%d",&a); while(a--) { scanf("%d",&b…… 题解列表 2022年05月17日 0 点赞 0 评论 355 浏览 评分:0.0
递增三元组 摘要:解题思路:前缀和形式注意事项:参考代码:# 前缀和 n=int(input()) als=list(map(int,input().split())) bls=list(map(int,inpu…… 题解列表 2022年05月17日 0 点赞 0 评论 358 浏览 评分:0.0
[编程入门]链表之报数问题 题解(c++简单) 摘要:解题思路:没什么好说的题啦。注意:我没用链表!注意事项:循环从2开始。参考代码:#include<bits/stdc++.h>using namespace std;int n,s=0;int mai…… 题解列表 2022年05月17日 0 点赞 0 评论 384 浏览 评分:0.0