online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
/* 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(){ float nota1 = 80, nota2 = 90, nota3 = 50, notaF = 0; notaF = (nota1 + nota2 + nota3)/3; cout<<"la nota final de alumno es de: "<<notaF<<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