code159a.txt

来自「VB大全(精华版)源代码」· 文本 代码 · 共 8 行

TXT
8
字号
Private Function Factorial(ByVal Value As Integer) As Integer
  Debug.Print "In factorial with the value "; value
 
  If Value = 1 Then
     Factorial = 1
     Debug.Print "Returning the value 1"
  Else
     Debug.Print "Returning 

⌨️ 快捷键说明

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