langs a-z
This commit is contained in:
parent
db842d013d
commit
d066446780
11389 changed files with 98361 additions and 1020 deletions
21
Task/Multifactorial/Objeck/multifactorial.objeck
Normal file
21
Task/Multifactorial/Objeck/multifactorial.objeck
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
class Multifact {
|
||||
function : MultiFact(n : Int, deg : Int) ~ Int {
|
||||
result := n;
|
||||
while (n >= deg + 1){
|
||||
result *= (n - deg);
|
||||
n -= deg;
|
||||
};
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
function : Main(args : String[]) ~ Nil {
|
||||
for (i := 1; i <= 5; i+=1;){
|
||||
IO.Console->Print("Degree ")->Print(i)->Print(": ");
|
||||
for (j := 1; j <= 10; j+=1;){
|
||||
IO.Console->Print(' ')->Print(MultiFact(j, i));
|
||||
};
|
||||
IO.Console->PrintLine();
|
||||
};
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue