C/C++ __int128的使用

__int128在gcc、codeblocks、vs2017都是不被支持的,不過__int128在Linux上可以編譯並且能用。

我們提交到大部分OJ上都是可以編譯且能用的。

輸入輸出
C/C++標準IO是不認識__int128這種數據類型的,cin和cout是無法輸出__int128的,所以我們要自己實現輸入輸出,其他的運算,與int沒有什麼不同。

這裏貼一份輸入輸出外掛的(kuangbin)模板
代碼

#include <bits/stdc++.h>
using namespace std;
inline __int128 read(){
    __int128 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;
}
inline void print(__int128 x){
    if(x < 0){
        putchar('-');
        x = -x;
    }
    if(x > 9)
        print(x / 10);
    putchar(x % 10 + '0');
}
int main(void){
    __int128 a = read();
    __int128 b = read();
    print(a + b);
    cout << endl;
    return 0;
}

參考來源

博客
https://blog.csdn.net/shadandeajian/article/details/81843805
博客
https://blog.csdn.net/tianwei0822/article/details/80687466

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章