码迷,mamicode.com
首页 > 其他好文 > 详细

test

时间:2019-07-20 09:22:50      阅读:83      评论:0      收藏:0      [点我收藏+]

标签:close   标题   inline   double   tchar   ++   long   bsp   int   

# 一级标题

 

## 二级标题

 

### 三级标题

 

#### 四级标题

 

#### 五级标题

 

###### 六级标题

 

$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

标签:close   标题   inline   double   tchar   ++   long   bsp   int   

原文地址:https://www.cnblogs.com/oierwyh/p/11216590.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!