online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
#include <iostream> const float PI = 3.1416; using namespace std; int main() { float radio=1; int opcion; cout << "introduzca opcion entre 1 y 5: "; cin >> opcion; switch (opcion) { case 1: cout << "Ingresar el nuevo valor del radio: " << endl; cin >> radio; break; case 2: cout << "El valor del radio es: " << radio << endl; break; case 3: cout << "Area del circulo es: " << PI*radio*radio << endl; break; case 4: cout << "Perimetro de la circunferencia es: " << 2*PI*radio << endl; break; default: cout << "Fin de opciones " << endl; } 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