Diego1764

Suma de notas de un estudiante

Jan 11th, 2022 (edited)
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.33 KB | None | 0 0
  1. #include <iostream>
  2. #include <conio.h>
  3.  
  4. using namespace std;
  5. int main(){
  6.     int num[10];
  7.     float sum = 0,div= 0;
  8.    
  9.     for(int i=0;i<10;i++){
  10.  
  11.         cout<<"Ingrese la nota del estudiante: ";
  12.         cin>>num[i];
  13.  
  14.         sum+=num[i];
  15.  
  16.     }
  17.         div = sum/10;
  18.     cout<<"Su promedio de notas mi estimado es: "<<div<<endl;
  19.    
  20.     getch();
  21.    
  22.     return 0;
  23.    
  24. }
Add Comment
Please, Sign In to add comment