wxy
首页
OJ
推荐资源
其它
arduino
小航助学学生端
虚拟机器人
启蒙版
一本通
关于我
登录
菜单
首页
OJ
推荐资源
其它
arduino
小航助学学生端
虚拟机器人
启蒙版
一本通
关于我
wxy
归档
2023 年 12 月
四舍六入五成双
2023-12-18
四舍六入五成双 #include<bits/stdc++.h> using namespace std; int main(){ printf("%.2f\n",9.825); //输出9.82 printf("%.2f\n",9.825001); //输出9.83 printf("%.2f\
lower_bound & upper_bound
2023-12-18
lower_bound & upper_bound #include<bits/stdc++.h> using namespace std; int main(){ vector<int> v={1,2,3,4,5}; auto p = lower_bound(v.begin(),v.end(
2023 年 11 月
C++ 不定参数...
2023-11-18
随笔
2023 年 10 月
KST-51单片机开发板配套资料
2023-10-25
随笔
2023 年 05 月
树的数据结构定义
2023-05-23
随笔
#include<bits/stdc++.h>using namespace std;const int m = 10; //树的度typedef struct node Node;typedef node *tree;struct node{char data;
结构体定义运算符
2023-05-12
随笔
结构体
2023-05-06
随笔
#include<bits/stdc++.h>using namespace std;struct student{//成员变量string name;int x,y;//无参数构造函数student(){}//带参数构造函数student(int x1,int y1):x(x1),y(
2023 年 03 月
打印栈的出栈序列
2023-03-21
随笔
递归经典题
2023-03-07
学案
1198:逆波兰表达式1201:菲波那契数列1202:Pell数列1204:爬楼梯1205:汉诺塔问题1207:求最大公约数问题1208:2的幂次方表示
函数
2023-03-04
随笔
传值与传地址#include<bits/stdc++.h>using namespace std;//传值void f1(int a,int b){int t=a;a=b;b=t;}//传地址void f2(int &a,int &b){int t=a;a=b;b=t;}
上一页
10 / 13
下一页