using System;
public class Program
{
public static void Main(string[] args)
{
double d = 199.123;
string rounded = String.Format("{0:0.00}", Math.Round(d, 2));
Console.WriteLine(rounded);
d = 199.183;
rounded = String.Format("{0:0.00}", Math.Round(d, 2));
Console.WriteLine(rounded);
}
}
/*
run:
199.12
199.18
*/