ostream& operator<<(ostream& os, __int128 t) { if (t==0) return os << "0"; if (t<0) { os<<"-"; t=-t; } int a[50],ai=0; memset(a,0,sizeof a); while (t!=0){ a[ai++]=t%10; t/=10; } for (int i=1;i<=ai;i++) os<<abs(a[ai-i]); return os<<""; }
使用cout即可。
原文地址:https://www.cnblogs.com/St-Lovaer/p/11661639.html
时间: 2024-11-29 10:00:34