Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- class Program
- {
- static void Main()
- {
- Console.Write("a = ");
- double a = double.Parse(Console.ReadLine());
- Console.Write("b = ");
- double b = double.Parse(Console.ReadLine()); ;
- double eps = 0.000001d;
- bool isEqual = (Math.Abs(a-b) < eps);
- Console.WriteLine(isEqual);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement