- using System;
- using System.Text;
-
- namespace ConsoleApplication1
- {
- class Program
- {
- static void Main(string[] args)
- {
- Console.WriteLine("Math.Round(1.2) = " + Math.Round(1.2));
- Console.WriteLine("Math.Round(1.5) = " + Math.Round(1.5));
- Console.WriteLine("Math.Round(-1.2) = " + Math.Round(-1.2));
- Console.WriteLine("Math.Round(-1.5) = " + Math.Round(-1.5));
-
- Console.ReadLine();
- }
- }
- }
|