躺平了的柯基很愉快
躺平了的柯基很愉快
全部文章
分类
归档
标签
去牛客网
登录
/
注册
躺平了的柯基很愉快的博客
全部文章
(共9篇)
题解 | #求 1 - n 之间偶数的和#
#include<iostream>using namespace std;int main(){ int i; int sum=0; ...
2022-12-11
0
218
题解 | #交换两个变量的值#
#include<iostream>using namespace std;void swap(int *pa,int *pb){ int temp; &nbs...
2022-12-11
0
184
题解 | #获取两数中的较大值#
#include<iostream>using namespace std;int main(){ int a,b; cin>>a>>...
2022-12-11
0
233
题解 | #两数求和#
#include<iostream>using namespace std;int main(){ int a,b; cin>>a>>...
2022-12-11
0
176
题解 | #实现四舍五入#
#include<iostream>#include<iomanip>#include<cmath>using namespace std;int main(){ float a...
2022-12-11
1
187
题解 | #KiKi定义电子日历类#
#include <iostream>#include<cstring>using namespace std;class TDate{ public: &...
2022-12-08
1
289
题解 | #牛牛的双链表求和#
#include <stdio.h>#include<stdlib.h>typedef struct linklist{ int val; st...
2022-12-01
0
224
题解 | #牛牛的单链表求和#
#include <stdio.h>#include<stdlib.h>typedef struct point{ int val; struct point...
2022-12-01
2
313
题解 | #牛牛的单向链表#
#include <stdio.h>#include<stdlib.h>struct linklist{ int val; struct lin...
2022-11-30
0
310