Advertisement
Spocoman

03. Floating Equality

Jan 19th, 2022
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.81 KB | None | 0 0
  1. using System;
  2. using System.Numerics;
  3.  
  4. namespace FloatingEquality
  5. {
  6.     class Program
  7.     {
  8.         static void Main(string[] args)
  9.         {
  10.             double a = double.Parse(Console.ReadLine());
  11.             double b = double.Parse(Console.ReadLine());
  12.            
  13.             if ( Math.Abs(a - b) <= 0.000001)
  14.             {
  15.                 Console.WriteLine("True");
  16.             }
  17.             else
  18.             {
  19.                 Console.WriteLine("False");
  20.             }
  21.         }
  22.     }
  23. }
  24.  
  25.  
  26. Тарикатско решение:)
  27.  
  28. using System;
  29.  
  30. namespace FloatingEquality
  31. {
  32.     class Program
  33.     {
  34.         static void Main(string[] args)
  35.         {
  36.             Console.WriteLine(Math.Abs(double.Parse(Console.ReadLine()) - double.Parse(Console.ReadLine())) <= 0.000001);
  37.         }
  38.     }
  39. }
  40.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement