示例#1
0
文件: Power.cs 项目: bmk10/calculux
 public Power(Function baseFunction, NaturalNumber exponent)
 {
     Base     = baseFunction;
     Exponent = exponent;
 }
示例#2
0
 public Factorial(NaturalNumber operand)
 {
     Operand = operand;
 }