! CODEBANK 2012 !
İNDİRMEK&DETAYLI BİLGİ ALMAK İÇİN BURAYI TIKLAYINIZ.
ÖNEMLİ AÇIKLAMA: MUTLAKA OKUYUNUZ!
0 Üye ve 1 Ziyaretçi konuyu incelemekte.
Max(sayı1,sayı2);
Min(sayı1,sayı2);
Abs(sayı);
Sign(sayı);
Floor(sayı);
Ceiling(sayı) ;
Round(sayı);
Round(sayı, basamak_sayısı);
Log10(sayı) ;
Log(sayı);
Log(sayı , taban) ;
Pow(sayı, üst);
Exp(üst) ;
Sqrt(sayı);
PI;
Sin(açı);
Cos(açı) ;
Tan(açı) ;
Acos(sayı);
Asin(sayi);
Atan(sayı);
Atan2(y, x);
Sinh(açı);
Tanh(açı);
Cosh(açı);
Secanth:= 2 / (Math.Exp(x) + Math.Exp(-x));Cosecanth := 2 / (Math.Exp(x) - Math.Exp(-x));Cotanjanth := (Math.Exp(x) + Math.Exp(-x)) / (Math.Exp(x) - Math.Exp(-x));
ASinh := Math.Log(x+Math.Sqrt(x*x+1));ACosh := Math.Log(x+Math.Sqrt(x*x-1));ATanh := Math.Log((1+x) / (1-x)) / 2;ASech := Math.Log((Math.Sqrt(-x*x+1)+1) / x);ACosech := Math.Log((Math.Sign(x)*Math.Sqrt(x*x+1)+1) / x);ACotanh := Math.Log((x+1) / (x-1)) / 2;