online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code    Language
using System; using System.Linq; public class Program { private static Random random = new Random(); public static void Main() { Console.WriteLine("Random password with length of 8 character."); Console.WriteLine("==========================================="); Console.WriteLine("Capital latters : 2"); Console.WriteLine("Number latters : 2"); Console.WriteLine("Special latters : 2"); Console.WriteLine("Small latters : 2"); Console.WriteLine("==========================================="); Console.Write("The Random Password : "); Console.WriteLine(RandomStringCap(2) + RandomStringNum(2) + RandomStringSpe(2) + RandomStringSml(2)); Console.WriteLine("==========================================="); } public static string RandomStringCap(int length) { const string chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; return new string(Enumerable.Repeat(chars, length) .Select(s => s[random.Next(s.Length)]).ToArray()); } public static string RandomStringNum(int length) { const string chars = "0123456789"; return new string(Enumerable.Repeat(chars, length) .Select(s => s[random.Next(s.Length)]).ToArray()); } public static string RandomStringSml(int length) { const string chars = "abcdefghijklmnopqrstuvwxyz"; return new string(Enumerable.Repeat(chars, length) .Select(s => s[random.Next(s.Length)]).ToArray()); } public static string RandomStringSpe(int length) { const string chars = "!@#$%^&*_-=+"; return new string(Enumerable.Repeat(chars, length) .Select(s => s[random.Next(s.Length)]).ToArray()); } }

Compiling Program...

Command line arguments:
Standard Input: Interactive Console Text
×

                

                

Program is not being debugged. Click "Debug" button to start program in debug mode.

#FunctionFile:Line
VariableValue
RegisterValue
ExpressionValue