Archived
1
0

Initial commit

This commit is contained in:
2025-10-24 17:19:46 +08:00
Unverified
commit acc0c9e220
155 changed files with 77369 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
using System;
namespace C_Sharp_3_2
{
public class Program
{
static void Main()
{
int f1=1, f2=1, f3, n=2;
Console.Write("{0,5}\t{0,5}\t", f1, f2);
f3 = f1 + f2;
while (f3<=1000)
{
Console.Write("{0,5}\t", f3);
n++;
if (n % 5 == 0) Console.WriteLine("\n");
f1 = f2;
f2 = f3;
f3 = f1 + f2;
}
}
}
}