mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-23 20:08:47 +00:00
Add __int128 Utils
This commit is contained in:
parent
f1c976012c
commit
26ce4f0658
13
templates/int128.h
Normal file
13
templates/int128.h
Normal file
@ -0,0 +1,13 @@
|
||||
#include <algorithm>
|
||||
#include <ostream>
|
||||
#include <string>
|
||||
|
||||
std::ostream& operator<<(std::ostream& __ostream, __int128 __n) {
|
||||
std::string __o;
|
||||
while (__n) {
|
||||
__o.push_back(__n % 10 + '0');
|
||||
__n /= 10;
|
||||
}
|
||||
std::reverse(__o.begin(), __o.end());
|
||||
return __ostream << __o;
|
||||
}
|
Loading…
Reference in New Issue
Block a user