👤

Creati programul:Intr-un tabel sunt date notele grupei voastre pe semestru,care este nota medie a grupei?

Răspuns :

#include <iostream>
using namespace std;
int main(){int v[100],media=0,k=0,i,n;cin>>n;for(i=0;i<n;i++){cin>>v[i];media=media+v[i];k++;}cout<<(float)media/k;}