Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,955 questions

51,897 answers

573 users

How to print the first N fibonacci numbers in C#

1 Answer

0 votes
using System;

class Program
{
    static void printFibonacciNumbers(int N) {
        if (N < 1)
            return;
             
        Console.Write("0 1 ");
        int currentnumber = 0, nextnumber = 1, nexttemp;
          
        for (int i = 0; i < N - 2; i++) {
            nexttemp = nextnumber;
            nextnumber = currentnumber + nextnumber;
            currentnumber = nexttemp;
            Console.Write(nextnumber + " ");
        }
    }
    static void Main() {
        int n = 15;
        
        printFibonacciNumbers(n);
    }
}



/*
run:

0 1 1 2 3 5 8 13 21 34 55 89 144 233 377 

*/

 



answered Aug 10, 2021 by avibootz

Related questions

2 answers 107 views
1 answer 87 views
1 answer 164 views
1 answer 132 views
1 answer 132 views
1 answer 131 views
4 answers 249 views
...