码迷,mamicode.com
首页 > 其他好文 > 详细

poj 1003

时间:2015-03-09 00:14:17      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:

还是水题适合蠢比的我

#include <stdio.h>
int main()
{
	float temp, sum = 0;
	int i;
	for (i = 0; i < 12; i++)
	{
		scanf("%f", &temp);
		sum += temp;
	}
	printf("$%.2f",sum/12 );
	return 0;
}

  

poj 1003

标签:

原文地址:http://www.cnblogs.com/R7-s/p/4322488.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!