2

好吧,我可以找到许多大型整数库,但它们适用于除 VB.NET 之外的所有编程语言。有谁知道可以处理非常大的数字的 Visual Basic .NET 的类/库?(我想处理 1024 甚至更多位)。我需要它的唯一计算支持加法、替换、乘法、除法和舍入。

它与此代码一起使用:

Dim Letterz() As Integer = {33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 0}
Function itoa(ByVal val As ULong)
    Dim toret As String = ""
    Dim TempVal As ULong = val
    For pos As ULong = 0 To 999999999999999999
        If TempVal > 0 Then
            Dim remainder As ULong = TempVal Mod Letterz.Length
            Dim ToInsert As Integer = Letterz(remainder)
            Dim ToInsStr As String = Chr(ToInsert)
            toret = ToInsStr & toret
            Dim DividedVal As Double = TempVal / Letterz.Length
            DividedVal = DividedVal - 0.5
            DividedVal = Math.Round(DividedVal, 0, MidpointRounding.ToEven)
            TempVal = DividedVal
        Else
            Exit For
        End If
    Next
    itoa = toret
End Function

Function atoi(ByVal val As String) As ULong
    Dim CURRNUM As ULong = 0
    Dim len As ULong = val.Length()
    If len > 0 Then
        For i As ULong = 0 To len - 1
            For x As ULong = 0 To Letterz.Length - 1
                Dim y As ULong = (len - i) - 1
                If val(y) = Chr(Letterz(x)) Then
                    Dim PWR As ULong = Math.Pow(Letterz.Length, i)
                    Dim MLTPLY As ULong = x * PWR
                    CURRNUM += MLTPLY
                End If
            Next
        Next
    End If
    atoi = CURRNUM
End Function
Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click
    TextBox2.Text = itoa(ULong.Parse(TextBox1.Text))
    TextBox3.Text = atoi(TextBox2.Text).ToString()
End Sub
4

1 回答 1

5

.NET 4 中引入了BigInteger类型。System.Numerics它可用于表示“任意大的有符号整数”。

于 2012-09-07T22:42:18.660 回答