zoukankan      html  css  js  c++  java
  • GDUFE ACM-1030

    题目: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
    ",sum/12);
    11         return 0;
    12 }
  • 相关阅读:
    进阶面向对象(下)
    进阶面向对象(上)
    使用WIFI准备工作及配置内核——韦东山
    USB设备驱动程序1
    USB总线驱动程序
    USB驱动程序涉及的概念及框架
    I2C协议简介
    倾旋之slack主题协同
    1.影子制作
    11.快速选择工具
  • 原文地址:https://www.cnblogs.com/ruo786828164/p/6006360.html
Copyright © 2011-2022 走看看