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:"); int a = int.Parse(Console.ReadLine()); Console.Write("Please enter b:"); int b = int.Parse(Console.ReadLine()); Console.Write("Please enter c:"); int c = int.Parse(Console.ReadLine()); double d = b * b - 4 * a * c; // الاوامر الشرطية if ( d < 0 ) Console.WriteLine("Error - No X1,X2 "); else // ذلك خلاف { d = Math.Sqrt(d); //الجذر الاول double x1 = (-b + d) / (2 * a); //الجذر الثاني double x2 = (-b - d) / (2 * a); //طباعة النتيجة Console.WriteLine("x1: {0}",x1); Console.WriteLine("x2: {0}", x2); } } }

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