![]() |
|
|
#1 |
Factorial Operator/Function
Does one exist?
__________________
Kicking it, old school style... |
|
|
|
|
|
|
#2 |
|
no but here is one:
Code:
static final postoperator int ! ( out int A )
{
local int b;
b=A-1;
While (b>1){
A*=b;
b--;
}
A=b;
}
|
|
|
|
|
![]() |
| Thread Tools | |
| Display Modes | |
|
|