fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. double x = 1/3d;
  8. decimal y = 1/3m;
  9. if (x.ToString() == y.ToString())
  10. Console.WriteLine("x equal y");
  11.  
  12. Console.WriteLine(" {0} ,{1}", x,y);
  13.  
  14.  
  15.  
  16. }
  17. }
Success #stdin #stdout 0.02s 16852KB
stdin
Standard input is empty
stdout
 0.333333333333333  ,0.3333333333333333333333333333