Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
my cool stuff
//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) { //Your code goes here Console.WriteLine("Hello, Joeri!"); Console.WriteLine("Yoo dit is cool"); MyMessage("Joeri"); fibRecursive(1, 1, 9001); } static string MyMessage(string message) { return "Yolo " + message; } static long fibRecursive(long a, long b, long limit) { Console.WriteLine(b); long c = b; b = a + b; a = c; if (b >= limit) { return b; } return fibRecursive(a, b, limit); } } }
run
|
edit
|
history
|
help
0
Extension Methods (edited)
Find the missing number in an array1
Melody
Viktor's example
Reflection custom test
Intuit // C# // listing_4.1 (Console.WriteLine _ Форматный вывод)
regex
005
fuck this
Compiler