[Homework] C# Basics - Primitive Data Types and Variables - Comparing Floats
Здравейте,
Накой има ли идея защо този код избива още щом се опидам да въведе първото дробно число?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace test1
{
class Program
{
static void Main(string[] args)
{
float a = (float.Parse(Console.ReadLine()));
float b = (float.Parse(Console.ReadLine()));
double eps = Math.Abs(a - b);
if (eps < 0.000001)
{
Console.WriteLine("True");
}
else
{
Console.WriteLine("False");
}
}
}
}