online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code    Language
/*Lección 10 Tema: 13 Ciclo WHILE, DO WHILE 3. Mostrar en pantalla la tabla del 6*/ #include <iostream> using namespace std; int main() { setlocale (LC_CTYPE, "Spanish"); int multi = 1, rs = 0; cout << "La tabla de multiplicación del número 6 es:\n"; do { rs = 6 * multi; cout << "6 * " << multi << " = " << rs << endl; multi++; } while(multi <= 10); 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