我尝试使用此代码,但给了我一个错误:常量100000000000000000000000溢出int64
我该如何解决这个问题?
// Initialise big numbers with small numbers count,one := big.NewInt(100000000000000000000000),big.NewInt(1)
例如:
原文链接:https://www.f2er.com/go/242051.htmlcount,one := new(big.Int),big.NewInt(1) count.SetString("100000000000000000000000",10)