POJ 1004 Financial Management

#include <stdio.h>
#include <iostream>

using namespace std;

int main()
{
    int n=12;
    float money,sum=0;
    for(int i=0;i<12;i++)
        {
            cin>>money;
            sum+=money;
        }
    printf("$%.2f", sum/12);
    return 0;
}
时间: 2024-12-25 08:55:34

POJ 1004 Financial Management的相关文章

POJ 1004 Financial Management 水

 Financial Management Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 165700   Accepted: 61629 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 d

poj 1004:Financial Management(水题,求平均数)

Financial Management Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 126087   Accepted: 55836 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 deci

[POJ] Financial Management

Financial Management Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 182193   Accepted: 68783 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 deci

UVALive2362 POJ1004 HDU1064 ZOJ1048 Financial Management

Regionals 2001 >> North America - Mid-Atlantic USA 问题链接:UVALive2362 POJ1004 HDU1064 ZOJ1048 Financial Management. 题意简述:输入12个数,计算其平均值. 编写程序时,考虑到C++处理输入比较方便,所以使用C++语言编程.然而,输出需要指定格式是还是C语言方便,所以就用函数printf()来处理输出. AC的C语言程序如下: /* UVALive2362 POJ1004 HDU106

poj 1004 Dividing

题目大意是,从输入六个数 ,第i个数代表价值为i的有几个,平均分给两个人 ,明摆着的背包问题,本来以为把他转化为01背包,但是TLe,后来发现是12万的平方还多,所以妥妥的TLE,后来发现这是一个完全背包问题,然后即纠结了 ,没学过啊 ,最后发现思想好i是蛮简单的,水水的A掉了,最后注意一下初始化问题和输入问题后就好了 #include <stdio.h> #include <string.h> int a[10]; int dp[120005]; int maxx(int a,i

UVA 11945 Financial Management 水题

Financial Management Time Limit: 1 Sec  Memory Limit: 256 MB 题目连接 acm.hust.edu.cn/vjudge/problem/visitOriginUrl.action?id=20184 Description Michael graduated of ITESO this year and finally has a job. He's making a lot of money, but somehow never seem

UVA11945 Financial Management

问题链接:UVA11945 Financial Management. 题意简述:输入12个数,计算其平均值. 编写程序时,考虑到C++处理输入比较方便,所以使用C++语言编程.然而,输出稍微麻烦一些,对于金额,每3位需要加一个逗号,而C和C++的函数库中,没有相应的解决办法. 程序中专门编写函数output_result()处理输出,使用的是有限状态自动机的工作方式来处理的. 这个问题与UVALive2362 POJ1004 HDU1064 ZOJ1048 Financial Manageme

HDU1064 Financial Management 【water】

Financial Management Time Limit: 400/200 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 9188    Accepted Submission(s): 5747 Problem Description Larry graduated this year and finally has a job. He's making a lot of

Financial Management ZOJ1048(简单计算)

Financial Management Time Limit: 2 Seconds Memory Limit: 65536 KB 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 portf