A Collection of Code Snippets in as Many Programming Languages as Possible
This project is maintained by TheRenegadeCoder
Welcome to the Fibonacci in C# page! Here, you’ll find the source code for this program as well as a description of how the program works.
using System;
namespace SamplePrograms
{
public class Fibonacci
{
public static void Main(string[] args)
{
try
{
int n = int.Parse(args[0]);
int first = 0;
int second = 1;
int result = 0;
for(int i = 1; i <= n; i++)
{
result = first + second;
first = second;
second = result;
Console.WriteLine(i + ": " + first);
}
}
catch(Exception)
{
Console.WriteLine("Usage: please input the count of fibonacci numbers to output");
Environment.Exit(0);
}
}
}
}
Fibonacci in C# was written by:
If you see anything you’d like to change or update, please consider contributing.
Note: The solution shown above is the current solution in the Sample Programs repository as of Apr 07 2019 00:47:29. The solution was first committed on Oct 02 2018 12:09:09. As a result, documentation below may be outdated.
No ‘How to Implement the Solution’ section available. Please consider contributing.
No ‘How to Run the Solution’ section available. Please consider contributing.