编写题解 1585: 蓝桥杯算法训练VIP-链表数据求和操作 C++ 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;struct Node { int data; //实部 int data1; …… 题解列表 2022年03月27日 0 点赞 0 评论 328 浏览 评分:0.0
陶陶摘苹果之遍历数组 摘要:解题思路: 用最大高度加上30cm之后 遍历数组中的十个数字 能满足就计数加一 注意事项:参考代码:#include<bits/stdc++.h>using namespace std…… 题解列表 2022年03月27日 0 点赞 0 评论 485 浏览 评分:0.0
2266: 蓝桥杯2015年第六届真题-打印大X 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n, m; char a[1000][1000] = { ' ' }; scanf("%…… 题解列表 2022年03月27日 0 点赞 0 评论 424 浏览 评分:0.0
数字的处理与判断(C语言) 摘要:解题思路:先尝试把每一位数分离出来,剩下就容易了注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,d,e,n,place; scanf("%d",&n)…… 题解列表 2022年03月27日 0 点赞 0 评论 504 浏览 评分:0.0
编写题解 1149: C语言训练-计算1~N之间所有奇数之和 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; int sum =0; cin>>n;…… 题解列表 2022年03月27日 0 点赞 0 评论 368 浏览 评分:0.0
编写题解 1151: C语言训练-计算一个整数N的阶乘 摘要:解题思路:注意事项:参考代码:#include<iostream>#include <iomanip>using namespace std;int main(){ int n; int …… 题解列表 2022年03月27日 0 点赞 0 评论 310 浏览 评分:0.0
编写题解 1152: C语言训练-计算:t=1-1/(2*2)-1/(3*3)-...-1/(m*m) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include <iomanip>#include<math.h>using namespace std;int main(){ …… 题解列表 2022年03月27日 0 点赞 0 评论 371 浏览 评分:0.0
方法论(买不到的数目,想不到的公式) 摘要:解题思路:就是简单记录一下这道真题和这个公式{x*y-x-y}注意事项: 注意此公式的前提是,两数不是全偶也不是全奇。参考代码: #include<…… 题解列表 2022年03月27日 0 点赞 0 评论 535 浏览 评分:0.0
简单dp-走方格 摘要:```python n,m = map(int,input().split()) dp = [[0 for j in range(m+1)] for i in range(n+1)] dp[1]…… 题解列表 2022年03月28日 0 点赞 0 评论 684 浏览 评分:0.0
啊哈哈哈,link来啦 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>//写一函数,将两个字符串连接char* link (char*,const char*);in…… 题解列表 2022年03月28日 0 点赞 0 评论 289 浏览 评分:0.0