Среднее значение округляется до целого(дробная часть отсекается)
#include
using std::cout;
using std::cin;
using std::endl;
int main()
{
int a[10];
int sum = 0;
cout << "Enter the growth of ten people:" << endl;<br>
for(int i = 0; i < 10; i++)
{
cin >> a[i];
sum += a[i];
}
cout << "\nThe total growth of all people equal to " << sum << "sm"<br> << "\nThe average growth of all people equal to " << (sum / 10) << "sm" << endl;<br>
return 0;
}