Data update
This commit is contained in:
parent
ed705008a8
commit
0df55f9f24
2196 changed files with 32999 additions and 3075 deletions
10
Task/Sudan-function/EasyLang/sudan-function.easy
Normal file
10
Task/Sudan-function/EasyLang/sudan-function.easy
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
func f n x y .
|
||||
if n = 0
|
||||
return x + y
|
||||
.
|
||||
if y = 0
|
||||
return x
|
||||
.
|
||||
return f (n - 1) f n x (y - 1) (f n x (y - 1) + y)
|
||||
.
|
||||
print "F(1,3,3) = " & f 1 3 3
|
||||
Loading…
Add table
Add a link
Reference in a new issue