online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
#include <iostream> #include <iomanip> using namespace std; int main() { int x,y; cout<<scientific<<123.45<<endl; //Uso de scientific cout<<fixed<<setprecision(2)<<scientific<<123.45<<endl; cout<<oct<<15<<endl; //Uso de showbase cout<<hex<<15<<endl; cout<<dec<<0xF<<endl; cout<<showbase<<oct<<15<<endl; cout<<showbase<<hex<<15<<endl; cout<<showbase<<dec<<0xF<<endl; cin>>hex>>x; //Suma de números hexadecimales cin>>hex>>y; cout<<hex<<x+y<<endl; cout<<dec<<x+y; 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