标签:平均数 iostream func cin name function type roc word
//求平均数
#include<iostream>
using namespace std;
int main()
{
double n,ave,s;
s=0;
for(int i=0;i<12;i++)
{
cin>>n;
s+=n;
}
ave=s/12;
cout<<"$"<<ave<<endl;
return 0;
}
标签:平均数 iostream func cin name function type roc word
原文地址:http://www.cnblogs.com/mykonons/p/6821805.html