Solstice
08.02.2009, 23:50
Ich mach mal so n Schnippselthread auf...
Da mal eine funktion für die berechnung von der fibonacci Reihe
void fibonacci (int limit = 100)
{
int temp1 = 0;
int temp2 = 0;
int erg = 0;
while (erg < limit)
{
cout << erg << endl; // hier steckt jeweils das Ergebnis drin
erg = temp1 + temp2;
temp2 = temp1;
if (erg == 0)
erg++;
temp1 = erg;
}
}
Da mal eine funktion für die berechnung von der fibonacci Reihe
void fibonacci (int limit = 100)
{
int temp1 = 0;
int temp2 = 0;
int erg = 0;
while (erg < limit)
{
cout << erg << endl; // hier steckt jeweils das Ergebnis drin
erg = temp1 + temp2;
temp2 = temp1;
if (erg == 0)
erg++;
temp1 = erg;
}
}