记录编号 64417 评测结果 AAAAAAAAAA
题目名称 money 最终得分 100
用户昵称 Gravatarok 是否通过 通过
代码语言 C++ 运行时间 0.004 s
提交时间 2013-07-24 08:37:49 内存使用 0.31 MiB
显示代码纯文本
#include <fstream>
#include <iomanip>
using namespace std;
int main()
{
	double s=0.0,a=0.0,b=0.0;
	int n,i;
	ifstream input("dog.in");
	ofstream output("dog.out");
	input>>n;
	for(i=1;i<=n;i++)
	{
		input>>a>>b;
		s+=a*b/10;
	}
	output<<setprecision(2)<<std::fixed<<s<<endl;
	input.close();
	output.close();
	return 0;
}