Партнерка на США и Канаду по недвижимости, выплаты в крипто
- 30% recurring commission
- Выплаты в USDT
- Вывод каждую неделю
- Комиссия до 5 лет за каждого referral
Математические процедуры и функции
Интерфейс математических подпрограмм заимствован преимущественно из модулей System и Math системы Delphi.
function Sign(x: integer): integer; |
function Sign(x: longword): integer; |
function Sign(x: int64): integer; |
function Sign(x: uint64): integer; |
function Sign(x: real): integer; |
function Abs(x: integer): integer; |
function Abs(x: longword): longword; |
function Abs(x: int64): int64; |
function Abs(x: uint64): uint64; |
function Abs(x: real): real; |
function Sin(x: real): real; |
function Sinh(x: real): real; |
function Cos(x: real): real; |
function Cosh(x: real): real; |
function Tan(x: real): real; |
function Tanh(x: real): real; |
function ArcSin(x: real): real; |
function ArcCos(x: real): real; |
function ArcTan(x: real): real; |
function Exp(x: real): real; |
function Ln(x: real): real; |
function Log2(x: real): real; |
function Log10(x: real): real; |
function LogN(base, x: real): real; |
function Sqrt(x: real): real; |
function Sqr(x: integer): int64; |
function Sqr(x: longword): uint64; |
function Sqr(x: int64): int64; |
function Sqr(x: uint64): uint64; |
function Sqr(x: real): real; |
function Power(x, y: real): real; |
function Round(x: real): integer; |
function Trunc(x: real): integer; |
function Int(x: real): real; |
function Frac(x: real): real; |
function Floor(x: real): integer; |
function Ceil(x: real): integer; |
function RadToDeg(x: real): real; |
function DegToRad(x: real): real; |
procedure Randomize; |
procedure Randomize(seed: integer); |
function Random(maxValue: integer): integer; |
function Random(a, b: integer): integer; |
function Random: real; |
function Max(a, b: integer): integer; |
function Max(a, b: longword): longword; |
function Max(a, b: int64): int64; |
function Max(a, b: uint64): uint64; |
function Max(a, b: real): real; |
function Min(a, b: integer): integer; |
function Min(a, b: longword): longword; |
function Min(a, b: int64): int64; |
function Min(a, b: uint64): uint64; |
function Min(a, b: real): real; |


