System.Console.WriteLine(Math.Abs(-25)); // قدر مطلق
System.Console.WriteLine(Math.Round(2.49));//انتخاب به سمت نزدیکترین صورت میگیرد
System.Console.WriteLine(Math.Round(2.51));
System.Console.WriteLine(Math.Floor(2.4));//انتخاب به سمت کمترین صورت میگیرد
System.Console.WriteLine(Math.Floor(2.9));
System.Console.WriteLine(Math.Floor(-2.9));
System.Console.WriteLine(Math.Ceiling(-2.4)); //انتخاب به سمت بزرگترین صورت میگیرد
System.Console.WriteLine(Math.Ceiling(-2.9));
System.Console.WriteLine(Math.Ceiling(2.9));
System.Console.WriteLine(Math.Pow(2,3)); // عدد اول به توان عدد دوم
System.Console.WriteLine(Math.Abs(-25)); // قدر مطلق
System.Console.WriteLine(Math.Round(2.49));//انتخاب به سمت نزدیکترین صورت میگیرد System.Console.WriteLine(Math.Round(2.51));
System.Console.WriteLine(Math.Floor(2.4));//انتخاب به سمت کمترین صورت میگیرد System.Console.WriteLine(Math.Floor(2.9)); System.Console.WriteLine(Math.Floor(-2.9));
System.Console.WriteLine(Math.Ceiling(-2.4)); //انتخاب به سمت بزرگترین صورت میگیرد System.Console.WriteLine(Math.Ceiling(-2.9)); System.Console.WriteLine(Math.Ceiling(2.9));
System.Console.WriteLine(Math.Pow(2,3)); // عدد اول به توان عدد دوم
System.Console.WriteLine(Math.Sqrt(81)); //جذر
System.Console.WriteLine(Math.Max(10,15)); //maximum System.Console.WriteLine(Math.Min(10,15)); //minimum