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;
}
Kommentare zum Snippet