Why Am I Getting "NaN" Output ?
I am trying to code a permutation calculator for math hw.. The problem is that when I use big numbers like 555,55 or 999,99 etc. the proggramme gives me the "NaN" output :( I am the noobest noob and just don't get it plz help ! using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Permütasyon { class Program { static void Main(string[] args) { // degiskenler ve sonucun tanimlarini yazdim (sonuca ulasmak icin 2 asama/fonksiyon kullandim): double nege = double.Parse(Console.ReadLine()); double rege = double.Parse(Console.ReadLine()); double sonuc = nPermutasyon(nege, rege); Console.WriteLine(sonuc + " Doğru mu ? :D"); Console.WriteLine("Çıkmak için Enter tuşuna basın..."); Console.ReadLine(); } // permutasyon isleminin fonksiyonunu yazdim (asagidaki fonksiyondan alinan degerler ile bu fonksiyondaki islem yapilarak permutasyon yapmis oluyoruz): static double nPermutasyon(double n, double r) { if (n == r) return faktoriyel(n); else return faktoriyel(n) / faktoriyel(n - r); } // faktoriyel isleminin fonksiyonunu yazdim (bu islemler yapilip yukaridaki fonksiyona yaziliyor): static double faktoriyel(double n) { if (n == 1) return 1; else return n * faktoriyel(n - 1); } } }