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 }
  • 相关阅读:
    Filesystem Case-Sensitivity Mismatch
    内存分配
    单链表
    PHP校验日期格式是否合法
    Automatically populating $HTTP_RAW_POST_DATA is deprecated
    preg_match(): Compilation failed: character value in x{} or o{} is too large at offset 8
    CGI 和 FastCGI 协议的运行原理
    冒泡排序
    油猴子脚本-过滤百度广告
    查看chrome插件源码
  • 原文地址:https://www.cnblogs.com/ruo786828164/p/6006360.html
Copyright © 2011-2022 走看看