//Financial Management
//求平均数
#include<iostream>
using namespace std;

 

int main()
{
    int i=12;
    float n,sum=0;
    while(i--)
    {
        cin>>n;
        sum+=n;
    }
    cout<<"$"<<sum/12.0<<endl;
    return 0;
}

相关文章:

  • 2021-11-15
  • 2022-12-23
  • 2021-07-06
  • 2022-12-23
  • 2021-06-21
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-09-23
  • 2022-12-23
  • 2021-12-17
  • 2022-12-23
  • 2022-12-23
  • 2021-09-16
相关资源
相似解决方案