class Program { static void Main() { Console.WriteLine("Enter a number: "); int N = Convert.ToInt32(Console.ReadLine()); int first = 0; int second = 1; Console.WriteLine("Fibonacci Series"); for(int i = 1; i <= N; i++) { Console.Write(first + " "); int next = first + second; first = second; second = next; } } }
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter