langs a-z
This commit is contained in:
parent
db842d013d
commit
d066446780
11389 changed files with 98361 additions and 1020 deletions
16
Task/Factorial/PowerBASIC/factorial.powerbasic
Normal file
16
Task/Factorial/PowerBASIC/factorial.powerbasic
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