⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 module1.bas

📁 多项式的编程另一种算法
💻 BAS
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -