Metody numeryczne

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;   namespace Blad_maszynowy {
   
class Program {
      
static void Main(string[] args)
      
{
         
//BŁĄD MASZYNOWY
         
float x = 1.0f;float epsilon = 1.0f;          while(x+(epsilon*0.5f)!=x)// dodaje coraz mniejszą liczbę, aż nie załapie, że dodał :D
         
{    epsilon = epsilon * 0.5f;
         
}      Console.WriteLine(epsilon);     Console.ReadLine();
      
}
   
}
}
© 2013-2024 PRV.pl
Strona została stworzona kreatorem stron w serwisie PRV.pl