online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code    Language
/*Lección 5, tema 3. Ejercicio 2: EScriba un programa que lea las tres notas de un alumno y calcule la nota final media de dicho alumno (promedio).*/ #include <iostream> using namespace std; int main() { cout << "Las tres notas del alumno fueron: 7, 6.5 y 8.3\n"; float nota1 = 7, nota2 = 6.5, nota3 = 8.5, prom = 0; prom = (nota1 + nota2 + nota3) / 3; cout << "El promedio de las tres notas del alumno es de: " << prom << 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