XVII - The Stars.|

旅玖旅玖

园龄:4年1个月粉丝:1关注:1

__int128读写板子

复制代码
void write(__int128 a)
{
    if(a<0)
    {
        cout<<'-';
        a=-a;
    }
    if(a>9)
        write(a/10);
    cout<<(int)(a%10);
}

__int128 read()
{
    __int128 temp=0;
    string a;
    getline(cin,a);
    for(int i=0;i<a.size();i++)
    {
        temp*=10;
        temp+=a[i]-'0';
    }
    return temp;
}
复制代码

 

posted @   旅玖旅玖  阅读(74)  评论(0编辑  收藏  举报
点击右上角即可分享
微信分享提示
评论
收藏
关注
推荐
深色
回顶
收起