Very cool way to create a exp formulas. I am using it for my game witch is in development now.
PHP Code:static void Main(string[] args)
{
Console.Title = "Fibonacci Sequence";
Console.ForegroundColor = ConsoleColor.Green;
Int64 A = 1, B = 1, C = 0;
int I = 1;
while (I < 32 )
{
C = A + B;
A = B;
B = C;
Console.WriteLine(C);
I++;
}
Console.ReadLine();
}


Reply With Quote![[C#]Fibonacci Sequence](http://ragezone.com/hyper728.png)



