fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. // your code goes here
  8. decimal num = 100.176M;
  9. string strNum = num.ToString("N2");
  10. Console.WriteLine("Rounded Value is {0}",strNum);
  11. }
  12. }
Success #stdin #stdout 0.03s 33832KB
stdin
Standard input is empty
stdout
Rounded Value is 100.18