Feedback

C# - Fibonacci-Folge bis zu einem Limit

Veröffentlicht von am 11/12/2015
(2 Bewertungen)
Letze Fibonacci-Zahl unter einem angegebenen Limit ausgeben
 public long fibboFolge(long limit)
        {
//Letzte Fibonacci-Zahl unterm Limit  

            long zahl1 = 1;
            long zahl2 = 0;
            long temp = 0;

            while (zahl1 <= limit)
            {
                temp = zahl1 + zahl2;
                zahl2 = zahl1;
                zahl1 = temp;
            }

            return zahl2;
        }

Abgelegt unter Mathe, Fibonacci.

Kommentare zum Snippet

 

Logge dich ein, um hier zu kommentieren!