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 Month() { int month; Console.Write("Please enter month:"); month = int.Parse(Console.ReadLine()); if (month < 1 || month > 12) Console.WriteLine("Error!"); else { if (month == 2) Console.WriteLine(28); else // { if (month == 1 || month == 3 || month == 5 || month == 7 || month == 8 || month == 10 || month == 12 ) Console.WriteLine(31); else Console.WriteLine(30); // } } } static void Main() { Console.WriteLine("Hello World"); Month(); } }

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