This is a simple C# program to find Fibonacci series. If you are a c# beginner or want to start learning the c# programming language, then this program will help you to understand the basics of c# programming. In this program, I will explain how to write a c# program to find Fibonacci series.
Copy the below c# program and execute it in your Microsoft Visual Studio IDE (Integrated Development Environment ). At the end of this program, I have shared the output of program this program.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
using System; public class FibonacciExample { public static void Main(string[] args) { int n1=0,n2=1,n3,i,number; Console.Write("Enter the number of elements: "); number = int.Parse(Console.ReadLine()); Console.Write(n1+" "+n2+" "); for(i=2;i<number;++i) { n3=n1+n2; Console.Write(n3+" "); n1=n2; n2=n3; } } } |
Enter the number of elements: 10
0 1 1 2 3 5 8 13 21 34
If you like FreeWebMentor and you would like to contribute, you can write an article and mail your article to [email protected] Your article will appear on the FreeWebMentor main page and help other developers.
Article Tags: c programs, c programs with output, C# program to generate fibonacci series, c# program with example, C# Sharp Exercises: Find the Fibonacci numbers, Fibonacci Series in C#, the fibonacci numbers