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

GDUFE ACM-1030

时间:2016-10-28 07:48:06      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:ted   average   display   figure   media   with   problem   color   pre   

题目:http://acm.gdufe.edu.cn/Problem/read/id/1030

 

Financial Management

Time Limit: 4000/2000ms (Java/Others)

Problem Description:

  Larry graduated this year and finally has a job. He’s making a lot of money, but somehow never seems to have enough. Larry has decided that he needs to grab hold of his financial portfolio and solve his financing problems. The first step is to figure out what’s been going on with his money. Larry has his bank account statements and wants to see how much money he has. Help Larry by writing a program to take his closing balance from each of the past twelve months and calculate his average account balance.


Input:

The input will be twelve lines. Each line will contain the closing balance of his bank account for a particular month. Each number will be positive and displayed to the penny. No dollar sign will be included.

Output:

The output will be a single number, the average (mean) of the closing balances for the twelve months. It will be rounded to the nearest penny, preceded immediately by a dollar sign, and followed by the end-of-line. There will be no other spaces or characters in the output.

 

Sample Input:

123.45
3.65
37.54
845.43
65.23
545.57
2.00
3.42
334.52
535.67
56.3
2.34

Sample Output:

$212.93

思路:把几个数加起来,再除以12

难度:很简单

代码:
 1 #include<stdio.h>
 2 int main()
 3 {
 4     double n,sum;
 5     int i;
 6     sum=0;
 7     for(i=0;i<12;i++)
 8     {scanf("%lf",&n);
 9         sum=sum+n;}
10         printf("$%.2lf\n",sum/12);
11         return 0;
12 }

 

GDUFE ACM-1030

标签:ted   average   display   figure   media   with   problem   color   pre   

原文地址:http://www.cnblogs.com/ruo786828164/p/6006360.html

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