>n; cout<<"Input "< 赞 踩 输入n,输入n个整数。输出结果(保留两位小数)。 Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。
C++练习整理_c++求n个正整数的平均值【问题描述】编写程序计算n个数的平均值,结果保留2位
#include<iostream>
#include<iomanip>
using namespace std;
int main()
{
int n;
double aver=0;
int a[20];
cout<<"Input n: ";
cin>>n;
cout<<"Input "<<n<<" integers: ";
for(int i=0;i<n;i++)
{
cin>>a[i];//12 4 6 8 10
}
for(int j=0;j<n;j++)
{
aver=aver+a[j];
}
cout<<"Average="<<fixed<<setprecision(2)<<aver/n<<endl;
return 0;
}