财务java计算打印数量_财务统计

资金统计

个人信息:就读于燕大本科软件project专业 眼下大三;

本人博客:google搜索“cqs_2012”就可以;

个人爱好:酷爱数据结构和算法。希望将来从事算法工作为人民作出自己的贡献;

编程语言:C++ 和 Java ;

编程坏境:Windows 7 专业版 x64;

编程工具:vs2008;

制图工具:office 2010 powerpoint;

硬件信息:7G-3 笔记本;

真言

经验是少不了尝试的

题目

描写叙述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.输入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.输出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.

代码(JAVA)

import java.io.*;

import java.text.DecimalFormat;

import java.util.*;

public class Main

{

public static void main(String args[]) throws Exception

{

Scanner cin = new Scanner(System.in);

double[] mydata = new double[12];

int i = 0;

while(i < 12)

{

mydata[i] = cin.nextDouble();

i++;

}

my_1004(mydata);

}

public static void my_1004(double[] myarray)

{

int i = 0 ;

double result = 0 ;

while(i < myarray.length)

{

result = result + myarray[i] ;

i++;

}

result = result / myarray.length ;

DecimalFormat df = new DecimalFormat("#.00");

System.out.println("$"+df.format(result));

}

}

版权声明:本文博客原创文章,博客,未经同意,不得转载。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值