gpt4 book ai didi

vb.net - 是否有适用于 Visual Basic .NET(128 位或更多位)的大整数类?

转载 作者:行者123 更新时间:2023-12-02 22:30:37 24 4
gpt4 key购买 nike

嗯,我可以找到许多大型整数库,但它们适用于除 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

最佳答案

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

关于vb.net - 是否有适用于 Visual Basic .NET(128 位或更多位)的大整数类?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12326319/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com