一品网
  • 首页

快读快写板子


#include 

using namespace std;

inline int read(){
    int x = 0,f = 1;
    char c = getchar();
    while(c<'0' || c>'9'){
        if(c == '-') f = -1;
        c = getchar();
    }///整数符号
    while(c>='0' && c<='9'){
        x = (x<<3) + (x<<1) + (c^48);
        c = getchar();
    }///挪位加数
    return x*f;
}

inline void write(int x){
    if(x<0){
        putchar('-');
        x=-x;
    }
    if(x>=10) write(x/10);
    putchar(x%10+'0');
}

int main(){
    int n = read();
    write(n);
}

其他

相关


007.SMB其他应用

python的WeakKeyDictionary类和weakref模块的其他函数

jQuery 当前展开其他收缩 三级下拉菜单(转载)

Dora.Interception,为.NET Core度身打造的AOP框架 [5]:轻松地实现与其他AOP框架的整合

九、测试经销商能看到其他经销商的工单数据排查--excel如何单列去重

img图片跨域问题(场景:阿里oss,腾讯oss,其他第三方文件服务器)

【其他】修改服务器时间,oracle数据库时间

如何申请 Apple 的 Dun & Bradstreet Code (邓白氏编码 2021)(最新的,网上其他的流程都

表单组件里面放其他组件的方法

表单组件里面放其他组件的方法

7_less中引入其他文件 / 模块

Windows 2003 只能打开百度,不能打开其他网页的一个解决方法

标签

一品网 冀ICP备14022925号-6