Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Kindle
Message
De
23/07/2011 10:22:18
 
 
À
23/07/2011 07:20:09
Information générale
Forum:
Books
Catégorie:
Autre
Titre:
Re: Kindle
Divers
Thread ID:
01518646
Message ID:
01518986
Vues:
47
>>
>>Off topic but since I think you enjoy obscure code I just wrote this (purely as a mockup):
static IEnumerable<int> GetSequence()
>>        {
>>            bool b = false;
>>            int x1 = 0;
>>            int x2 = 1;
>>
>>            while (true)
>>            {
>>                b=!b;
>>                yield return b ? x1 += x2 : x2 += x1;
>>            }
>>        ]
>
>working my way through it with a pencil
>
>1, 2, 3, 5, 8, 13, 21, 34, 55, 89, ...
>
>
>If we number them as n0, n1, n2, n3, n4, ....
>
>then n[i] = n[i-1] + n[i-2]

yep. Next in the series is the sum of the previous two items. It's called the Fibonacci series - but I actually got it wrong. It should be:
0,1,1,2,3,5,8 etc
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform