星星之火OIer:码代码前的前置

博客提到打代码前进行复制操作,可解决手速不够的问题。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

#include<cmath>
#include<ctime>
#include<queue>
#include<stack>
#include<vector>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<iostream>
#include<algorithm>
using namespace std;
#define it int
#define ll long long
#define il inline
#define bl bool
#define db double
#define rt return
#define vd void
#define ch char
#define wi while
#define br break
#define gc getchar
#define pc putchar
#define ct continue
#define fr for
#define cn const
il vd read(it &x) {
    x=0;
    it f=1;
    ch s=gc();
    wi(s<'0'||s>'9') {
        if(s=='-')
            f=-1;
        s=gc();
    }
    wi(s>='0'&&s<='9') {
        x=x*10+s-48;
        s=gc();
    }
    x*=f;
}
il vd pr(it x) {
    if(x<0) {
        pc('-');
        x=-x;
    }
    if(x>9)
        pr(x/10);
    pc(x%10+48);
}
it main() {
}

打代码前copy一下,妈妈再也不用担心我的手速不够了(*^__^*)嘻嘻 ……

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值