test

Posted oierwyh

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了test相关的知识,希望对你有一定的参考价值。

# 一级标题

 

## 二级标题

 

### 三级标题

 

#### 四级标题

 

#### 五级标题

 

###### 六级标题

 

$L^AT_EX$

 

~~del~~

 

`123`

 

>456

 

- 789

 

```cpp

 

#include<bits/stdc++.h>

using namespace std;

typedef long long ll;
typedef long double ld;

const int inf = 0x7fffffff;
const double eps = 1e-5;
const int N = 1e6+1;

inline void readx(int &x)

x=0;
int s=1;
char ch=getchar();
while(ch<‘0‘||ch>‘9‘)

if(ch==‘-‘)
s=-1;
ch=getchar();

while(ch>=‘0‘&&ch<=‘9‘)

x=(x<<1)+(x<<3)+ch-‘0‘;
ch=getchar();

x*=s;

int main()

// freopen("text.in","r",stdin);
// freopen("text.out","w",stdout);


// fclose(stdin);fclose(stdout);
return 0;

 

```

 

以上是关于test的主要内容,如果未能解决你的问题,请参考以下文章

请教shell脚本处理带空格的文件名

python argparse中的多个参数

call和apply的使用

textarea 删除白线?

在MySql中、怎样根据年份或者月份查询数据表中的数据?

linux 文件操作命令 touchcatmorelessheadtail