poj1004

Posted mykonons

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了poj1004相关的知识,希望对你有一定的参考价值。

//求平均数

#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;
 } 

以上是关于poj1004的主要内容,如果未能解决你的问题,请参考以下文章

poj1004

POJ 1004 Financial Management

poj 1004(水题)

POJ 1004

[poj 1004]Financial Management

poj1004