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:#.##} {1:#.##}", 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 < 3)
  18. rX =- t / 100;
  19. else if (t < 8)
  20. rX =+ t / 100 - 0.05m;
  21. else
  22. rX =+ t / 100;
  23. return rX;
  24. }
  25. }
Success #stdin #stdout 0.04s 24860KB
stdin
Standard input is empty
stdout
1 
1.01 -.01
1.02 -.02
1.03 -.02
1.04 -.01
1.05 
1.06 -.01
1.07 -.02
1.08 -.02
1.09 -.01
1.1 
1.11 -.01
1.12 -.02
1.13 -.02
1.14 -.01
1.15 
1.16 -.01
1.17 -.02
1.18 -.02
1.19 -.01
1.2 
1.21 -.01
1.22 -.02
1.23 -.02
1.24 -.01
1.25 
1.26 -.01
1.27 -.02
1.28 -.02
1.29 -.01
1.3 
1.31 -.01
1.32 -.02
1.33 -.02
1.34 -.01
1.35 
1.36 -.01
1.37 -.02
1.38 -.02
1.39 -.01
1.4 
1.41 -.01
1.42 -.02
1.43 -.02
1.44 -.01
1.45 
1.46 -.01
1.47 -.02
1.48 -.02
1.49 -.01
1.5 
1.51 -.01
1.52 -.02
1.53 -.02
1.54 -.01
1.55 
1.56 -.01
1.57 -.02
1.58 -.02
1.59 -.01
1.6 
1.61 -.01
1.62 -.02
1.63 -.02
1.64 -.01
1.65 
1.66 -.01
1.67 -.02
1.68 -.02
1.69 -.01
1.7 
1.71 -.01
1.72 -.02
1.73 -.02
1.74 -.01
1.75 
1.76 -.01
1.77 -.02
1.78 -.02
1.79 -.01
1.8 
1.81 -.01
1.82 -.02
1.83 -.02
1.84 -.01
1.85 
1.86 -.01
1.87 -.02
1.88 -.02
1.89 -.01
1.9 
1.91 -.01
1.92 -.02
1.93 -.02
1.94 -.01
1.95 
1.96 -.01
1.97 -.02
1.98 -.02
1.99 -.01