# include & ltcstdlib & gt uses the namespace stdint sum(int a[]).
{
int b = 0;
for(int I = 0; I< 10; i++)
{
b = b+ a[I];
}
Return to b;
}int avr(int a[])
{
int b;
b = sum(a)/ 10;
Return to b;
}int max(int a[])
{
int b = 0;
for(int I = 0; I< 10; i++)
{
if(b & lt; a[i])
{
b = a[I];
}
}
Return to b;
}int min(int a[])
{
int b = a[0];
for(int I = 0; I< 10; i++)
{
If (b & gta[i])
{
b = a[I];
}
}
Return to b;
}void main()
{
int a[ 10];
Cout & lt& lt Please enter 10 integers and press spacebar or enter to separate them (all10 must be entered):;
for(int I = 0; I< 10; i++)
{
CIN & gt; & gta[I];
}
The total number of cout & lt& lt "is:"
Cout & lt& lt "The average value is:"
The maximum value of cout & lt& lt "is:"
Cout & lt& lt "Minimum value is:"
System ("suspended");
}