mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-08 14:38:47 +00:00
35 lines
581 B
C++
35 lines
581 B
C++
#include <algorithm>
|
|
#include <ostream>
|
|
#include <string>
|
|
|
|
/**
|
|
* Prints an 128-bit integer to an output stream.
|
|
*/
|
|
std::ostream& operator<<(std::ostream& __ostream, __int128 __n) {
|
|
std::string __o;
|
|
|
|
if (__n == 0) {
|
|
return __ostream << 0;
|
|
}
|
|
|
|
bool is_negative = false;
|
|
|
|
if (__n < 0) {
|
|
is_negative = true;
|
|
__n = -__n;
|
|
}
|
|
|
|
while (__n) {
|
|
__o.push_back(__n % 10 + '0');
|
|
__n /= 10;
|
|
}
|
|
|
|
std::reverse(__o.begin(), __o.end());
|
|
|
|
if (is_negative) {
|
|
__ostream << '-';
|
|
}
|
|
|
|
return __ostream << __o;
|
|
}
|