module1.bas

来自「多项式的编程另一种算法」· BAS 代码 · 共 23 行

BAS
23
字号
Attribute VB_Name = "Module1"
'email: takisfmf@yahoo.gr
'for more source code visit
'http://www.geocities.com/takisfmf/index.html





Global A_PolynomialOrder, B_PolynomialOrder As Integer



Public Function GetValue(StringValue)
  Position = InStr(1, StringValue, ",")
  If Position <> 0 Then
    GetValue = Val(Left(StringValue, Position - 1) + "." + Right(StringValue, Len(StringValue) - Position))
  Else
    GetValue = Val(StringValue)
  End If
End Function

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?