Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
4
//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) { bool L = false; int num = 4; while(L) { int num2 = int.Parse(Console.ReadLine()); if(num == num2) { Console.WriteLine(num); L = true; } else Console.WriteLine(num2); } Console.ReadLine(); } } }
run
|
edit
|
history
|
help
0
3. Delegates and events, reference pitfall
learning
dynamic object
mine
Shalini_CSG_CodeTest
Download a .NET assembly, and execute a static, parameterless method.
MegaWays3
SKYIES
3
Base