online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
#include <iostream> const float PI = 3.14; using namespace std; int main(){ float x, y; cout<<"Ingrese primera coordenada"<<"\n"; cin>>x; cout<<"Ingrese segunda coordenada"<<"\n"; cin>>y; if( x>0 && y>0 ){ cout<<"Estas en el PRIMER cuadrante"<<endl; } if( x<0 && y>0 ){ cout<<"Estas en el SEGUNDO cuadrante"<<endl; } if( x<0 && y<0 ){ cout<<"Estas en el TERCER cuadrante"<<endl; } if( x>0 && y<0 ){ cout<<"Estas en el CUARTO cuadrante"<<endl; } if( x==0 && y==0 ){ cout<<"Estas en el origen de coordenadas"<<endl; } }

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