Lösungsvorschlag 3.3.-Aufgabe 1

Aus ComeniusWiki
Wechseln zu: Navigation, Suche
public void fibonacci1(){
long s=0; long t=1; long u=0;
System.out.println("0");
System.out.println("1");
while(u<100000) {
u=s+t; 
if (u<100000){System.out.println(u);}; 
s=t; t=u;};
}

Hinweis: Ohne die if-Bedingung würde die erste Fibonacci-Zahl >100000 auch noch ausgegeben.