online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
/****************************************************************************** Online C# Compiler. Code, Compile, Run and Debug C# program online. Write your code in this editor and press "Run" button to execute it. *******************************************************************************/ using System; class HelloWorld { static void Main() { Console.Write("Please enter a n1: "); int n1 = int.Parse(Console.ReadLine()); Console.Write("Please enter a n2: "); int n2 = int.Parse(Console.ReadLine()); Console.Write("Please enter a n3: "); int n3 = int.Parse(Console.ReadLine()); Console.Write("Please enter a n4: "); int n4 = int.Parse(Console.ReadLine()); //حل1 //int max = Math.Max(n1, n2); //max = Math.Max(n3,max); //max = Math.Max(n4, max); //حل2 int max = Math.Max( Math.Max(n1, n2), Math.Max(n3, n4)); Console.WriteLine("max numer is: " + max); } }

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