摘要:
大整数的构建 struct Bigint{ int fu;//表示数是否是负数 vector<int>s; Bigint(){ fu=0; } Bigint(const Bigint& a){ this->s=a.s; this->fu=a.fu; } Bigint(string str){ int 阅读全文
posted @ 2022-06-30 21:31
蓒鳰
阅读(26)
评论(0)
推荐(0)
浙公网安备 33010602011771号