Fibonacci
Sun Oct 12 2025 13:23:26 GMT+0000 (Coordinated Universal Time)
Saved by
@robo
using System;
class Fibonacci
{
static void Main()
{
Console.Write("Enter the number of terms: ");
int n = Convert.ToInt32(Console.ReadLine());
int a = 0, b = 1, c;
Console.Write("Fibonacci Series: ");
for (int i = 1; i <= n; i++)
{
Console.Write(a + " ");
c = a + b;
a = b;
b = c;
}
}
}
content_copyCOPY
Comments