fork(1) download
  1. using System;
  2. using static System.Console;
  3. using static System.Math;
  4.  
  5. public class Program {
  6. public static void Main() {
  7. WriteLine(Round(1190.205, 2, MidpointRounding.AwayFromZero));
  8. WriteLine(Round(1190.245M, 2, MidpointRounding.AwayFromZero));
  9. }
  10. }
  11.  
  12. //https://pt.stackoverflow.com/q/274734/101
Success #stdin #stdout 0.02s 16608KB
stdin
Standard input is empty
stdout
1190.21
1190.25