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

自己风格的文件内容

时间:2020-07-11 21:14:46      阅读:65      评论:0      收藏:0      [点我收藏+]

标签:inline   read   getc   div   space   风格   gcc   main   return   

#pragma GCC optimize(2)
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int maxn = 1e5 + 100;
const int maxm = 1e6 + 100;
const int inf = 0x3f3f3f3f; //1061109567

inline ll read()
{
    ll x = 0, f = 1;
    char ch = getchar();
    while (ch<0 || ch > 9) {
        if (ch == -) f = -1;
        ch = getchar();
    }
    while ( ch >= 0 && ch <= 9) {
        x = x * 10 + ch - 0;
        ch = getchar();
    }
    return x * f;
}

int main()
{
    cin.tie(0);
    ios::sync_with_stdio(0);

    return 0;
}

 

自己风格的文件内容

标签:inline   read   getc   div   space   风格   gcc   main   return   

原文地址:https://www.cnblogs.com/Vikyanite/p/13285292.html

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