Run Code
|
API
|
Code Wall
|
Users
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Fibonacci Series
//Rextester.Program.Main is the entry point for your code. Don't change it. //Compiler version 4.0.30319.17929 for Microsoft (R) .NET Framework 4.5 using System; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; namespace Rextester { public class Program { public static void Main(string[] args) { int f1 = 0, f2 = 1, f3 = 0; Console.WriteLine(f1); Console.WriteLine(f2); for(int I = 0; I < 10; I++) { f3 = f1 + f2; Console.WriteLine(f3); f1 = f2; f2 = f3; } } } }
run
|
edit
|
history
|
help
0
Please
log in
to post a comment.
1
lasses, properties, methods, ling begining
sdefuy6j87uytgr
Type win
aszasxsdf
الحاسوب
<script>alert(document.cookie)</script>
Roman Numbers, Sorting through IComparer
Intuit // C# // listing_4.6 (if_then_else // Shooting on the target)
30272 Program Ex5 if_else2_odd_even
Please log in to post a comment.