online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
#include<iostream>//نبدأ بوضع المكتبات using namespace std;//نبدأ بوضع المكتبات int main(){//الدالة الرئيسية int password=123;//نقوم بتعريف متغير للرقم السري int enter;//نقوم بتعريف متغير للكتابة من المستخدم cout<<"enter the password please";//نقوم بأمر طباعة إدخال الرقم السري cin>>enter;//نجعل المستخدم يضع الرقم السري if (enter == 123){ //إذا كان الرقم السري الذي أدخلته يساوي 123 فقم بتحقيق الشرط  //  نضع بداخل القوس الشرط الذي نريد تحقيقه ونفتح قوساً ونضع ما سيحصل عند تحقق الشرط ثم نغلقه cout<<"the password you entered is right";} //نقوم بأمر الطباعة في حال كان الرقم الذي أدخلناه 123  else { cout<<"the password you entered is wrong bro"; } // غير ذلك فإن لم يتحقق الشرط فقم بطباعة أن الرقم السري الذي أدخلته غير صحيح return 0; }

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