C++ 第1课《C++基础》C++基础
标准开始:#include<bits/stdc++.h> using namespace std; int main(){ return 0; }int大小:-2147483648~2147483647float:单精度浮点型double:双精度浮点型bool:布尔值(true false)ch...
烟台开发区实验中学2022级9班 – 班级官网V3.0上线啦!
地址:https://myclass.gusui.site/更新内容3.0大改版全面更新架构全面升级界面优化访问体验优化SEO前后端分离使用Vue+Element+构建
20240128 上课
#include <bits/stdc++.h>using namespace std;const int R = 8;const int C = 10;const int BR = 0; const int BC = 0; const int ER = 7;const int EC = 9;int dr[4] = {0, 1, 0, -1};i...
[C++]upper_bound用法
upper_bound(起始地址,结尾地址的下一个,要找的数)-数组名(不下降子序列,返回第一个大于x的地址。所以要减去数组名)
Docker如何备份数据
1、Docker容器备份数据Docker容器备份数据的主要方法有以下几种:1.1 使用docker commit命令备份容器,这种方法将容器的当前状态保存为镜像,但是镜像只保存容器的状态,不保存容器的数据。1.2 ...