Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
16
Task/Factorial/PowerBASIC/factorial.basic
Normal file
16
Task/Factorial/PowerBASIC/factorial.basic
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
function fact1#(n%)
|
||||
local i%,r#
|
||||
r#=1
|
||||
for i%=1 to n%
|
||||
r#=r#*i%
|
||||
next
|
||||
fact1#=r#
|
||||
end function
|
||||
|
||||
function fact2#(n%)
|
||||
if n%<=2 then fact2#=n% else fact2#=fact2#(n%-1)*n%
|
||||
end function
|
||||
|
||||
for i%=1 to 20
|
||||
print i%,fact1#(i%),fact2#(i%)
|
||||
next
|
||||
Loading…
Add table
Add a link
Reference in a new issue