风止意难平/
风止意难平/
全部文章
分类
归档
标签
去牛客网
登录
/
注册
风止意难平/的博客
全部文章
(共46篇)
题解 | #求 1 - n 之间偶数的和#
#include <iostream> using namespace std; int main() { int n; cin >> n; int sum = 0; //这实际上是一个首项为2,公差为2的等差数列的求和,只需对n判...
2023-12-10
0
203
题解 | #判断成绩等级#
#include <iostream> using namespace std; int main() { int score; cin >> score; if(score < 0||score >100) cout <...
2023-12-10
0
182
题解 | #盛水最多的容器#
//这道题要求采用双指针,那么我们直接定义一个左指针指向数组第一个元素,右指针 //指向数组最后一个元素,然后开始计算此时盛水面积,保存了第一个面积之后 //我们就要思考如何求出最大面积,因为我们已经用了第一个元素和最后一个元素的面积 //我们发现这两个元素中任意一个元素与中间元素的组合都无法突破第...
2023-03-21
1
291
题解 | #判断是否为回文字符串#
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * @param str string字符串 待判断的字符串 * @return bool布尔型 */ #include <stdbool.h> #include <string....
2023-03-19
0
284
题解 | #牛牛的链表交换#
#include <stdio.h> #include <stdlib.h> struct node { int num; struct node* next; }; int main() { int n, i; scanf("%d", &n)...
2023-03-18
1
265
题解 | #牛牛的双链表求和#
#include <stdio.h> #include <stdlib.h> struct node { int num; struct node* next; }; int main() { int n, i; scanf("%d", &n)...
2023-03-16
2
324
题解 | #牛牛的单链表求和#
#include <stdio.h> #include <stdlib.h> struct node { int num; struct node* next; }; int main() { int n, i; scanf("%d", &n)...
2023-03-16
0
0
题解 | #[NOIP2015]金币#
#include <stdio.h> int main() { int i,j,sum=0,cnt=1,n;//这里cnt用来控制循环的条件,j用来控制i,即控制加多少金币 scanf("%d",&n); for(i=1,j=1;cnt<=n;cn...
2022-12-25
1
172
题解 | #牛牛的一周#
#include <stdio.h> int main() { int x; scanf("%d",&x)...
C
2022-11-16
0
220
题解 | #牛牛的金币#
#include <stdio.h>// 这道题也就四种情况,要么x比x1大1,要么x1比x大1,要么y1比y大1,要么y比y1大1 。对应输出即可 int main()&n...
C
2022-11-16
0
248
首页
上一页
1
2
3
4
5
下一页
末页