fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. for (decimal x = 1 ; x != 2 ; x+=0.01M) {
  8. decimal y = CustomRound(x);
  9. Console.WriteLine("{0:0.00} {1:0.00}", x, y);
  10. }
  11. }
  12.  
  13. private static decimal CustomRound(decimal x)
  14. {
  15. var rX = Math.Truncate(x * 100) / 100;
  16. var t = rX * 100 % 5;
  17. if (t == 0) return rX;
  18. if (t < 3)
  19. rX =- t / 100;
  20. else if (t < 8)
  21. rX =+ t / 100 - 0.05m;
  22. else
  23. rX =+ t / 100;
  24. return rX;
  25. }
  26. }
Success #stdin #stdout 0.04s 28888KB
stdin
Standard input is empty
stdout
1.00 1.00
1.01 -0.01
1.02 -0.02
1.03 -0.02
1.04 -0.01
1.05 1.05
1.06 -0.01
1.07 -0.02
1.08 -0.02
1.09 -0.01
1.10 1.10
1.11 -0.01
1.12 -0.02
1.13 -0.02
1.14 -0.01
1.15 1.15
1.16 -0.01
1.17 -0.02
1.18 -0.02
1.19 -0.01
1.20 1.20
1.21 -0.01
1.22 -0.02
1.23 -0.02
1.24 -0.01
1.25 1.25
1.26 -0.01
1.27 -0.02
1.28 -0.02
1.29 -0.01
1.30 1.30
1.31 -0.01
1.32 -0.02
1.33 -0.02
1.34 -0.01
1.35 1.35
1.36 -0.01
1.37 -0.02
1.38 -0.02
1.39 -0.01
1.40 1.40
1.41 -0.01
1.42 -0.02
1.43 -0.02
1.44 -0.01
1.45 1.45
1.46 -0.01
1.47 -0.02
1.48 -0.02
1.49 -0.01
1.50 1.50
1.51 -0.01
1.52 -0.02
1.53 -0.02
1.54 -0.01
1.55 1.55
1.56 -0.01
1.57 -0.02
1.58 -0.02
1.59 -0.01
1.60 1.60
1.61 -0.01
1.62 -0.02
1.63 -0.02
1.64 -0.01
1.65 1.65
1.66 -0.01
1.67 -0.02
1.68 -0.02
1.69 -0.01
1.70 1.70
1.71 -0.01
1.72 -0.02
1.73 -0.02
1.74 -0.01
1.75 1.75
1.76 -0.01
1.77 -0.02
1.78 -0.02
1.79 -0.01
1.80 1.80
1.81 -0.01
1.82 -0.02
1.83 -0.02
1.84 -0.01
1.85 1.85
1.86 -0.01
1.87 -0.02
1.88 -0.02
1.89 -0.01
1.90 1.90
1.91 -0.01
1.92 -0.02
1.93 -0.02
1.94 -0.01
1.95 1.95
1.96 -0.01
1.97 -0.02
1.98 -0.02
1.99 -0.01