langs a-z
This commit is contained in:
parent
db842d013d
commit
d066446780
11389 changed files with 98361 additions and 1020 deletions
24
Task/Ackermann-function/NetRexx/ackermann-function.netrexx
Normal file
24
Task/Ackermann-function/NetRexx/ackermann-function.netrexx
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
/* NetRexx */
|
||||
options replace format comments java crossref symbols binary
|
||||
|
||||
numeric digits 66
|
||||
|
||||
parse arg j_ k_ .
|
||||
if j_ = '' | j_ = '.' | \j_.datatype('w') then j_ = 3
|
||||
if k_ = '' | k_ = '.' | \k_.datatype('w') then k_ = 5
|
||||
|
||||
loop m_ = 0 to j_
|
||||
say
|
||||
loop n_ = 0 to k_
|
||||
say 'ackermann('m_','n_') =' ackermann(m_, n_).right(5)
|
||||
end n_
|
||||
end m_
|
||||
return
|
||||
|
||||
method ackermann(m, n) public static
|
||||
select
|
||||
when m = 0 then rval = n + 1
|
||||
when n = 0 then rval = ackermann(m - 1, 1)
|
||||
otherwise rval = ackermann(m - 1, ackermann(m, n - 1))
|
||||
end
|
||||
return rval
|
||||
Loading…
Add table
Add a link
Reference in a new issue