Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
29
Task/Ackermann-function/VBA/ackermann-function.vba
Normal file
29
Task/Ackermann-function/VBA/ackermann-function.vba
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
Private Function Ackermann_function(m As Variant, n As Variant) As Variant
|
||||
Dim result As Variant
|
||||
Debug.Assert m >= 0
|
||||
Debug.Assert n >= 0
|
||||
If m = 0 Then
|
||||
result = CDec(n + 1)
|
||||
Else
|
||||
If n = 0 Then
|
||||
result = Ackermann_function(m - 1, 1)
|
||||
Else
|
||||
result = Ackermann_function(m - 1, Ackermann_function(m, n - 1))
|
||||
End If
|
||||
End If
|
||||
Ackermann_function = CDec(result)
|
||||
End Function
|
||||
Public Sub main()
|
||||
Debug.Print " n=",
|
||||
For j = 0 To 7
|
||||
Debug.Print j,
|
||||
Next j
|
||||
Debug.Print
|
||||
For i = 0 To 3
|
||||
Debug.Print "m=" & i,
|
||||
For j = 0 To 7
|
||||
Debug.Print Ackermann_function(i, j),
|
||||
Next j
|
||||
Debug.Print
|
||||
Next i
|
||||
End Sub
|
||||
Loading…
Add table
Add a link
Reference in a new issue