Skip to content

Instantly share code, notes, and snippets.

@ninpl
Created March 16, 2017 17:25
Show Gist options
  • Save ninpl/64dc67bf683ea03401c9c61c780e4a00 to your computer and use it in GitHub Desktop.
Save ninpl/64dc67bf683ea03401c9c61c780e4a00 to your computer and use it in GitHub Desktop.
Promedio de las notas
// Practica para refrescar la sintaxis de C++
#include <iostream>
using namespace std;
int main()
{
// Promedio de las notas
float nota1,nota2,nota3,promedioFinal;
cout<<"Nota 1:";
cin>>nota1;
cout<<"Nota 2:";
cin>>nota2;
cout<<"Nota 3:";
cin>>nota3;
promedioFinal = (nota1+nota2+nota3)/3;
cout<<"Promedio final :"<<promedioFinal<<endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment