博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
财务统计
阅读量:6515 次
发布时间:2019-06-24

本文共 1886 字,大约阅读时间需要 6 分钟。

资金统计

个人信息:就读于燕大本科软件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));	}}

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

你可能感兴趣的文章
是什么
查看>>
rpm 介绍
查看>>
phpMyAdmin安装
查看>>
iOS开发 关于SEL方法使用的简单总结
查看>>
java finally语句问题
查看>>
《人月神话》经典摘录
查看>>
一个resin运行多个应用,使用nginx控制访问
查看>>
Nginx中文参考手册
查看>>
Findbugs 笔记
查看>>
用 PHP 进行 HTTP 认证
查看>>
Symantec BackExec 2010 R3安装之初体验
查看>>
iOS 5 编程(2)-开关(UISwitch)、分段控件(UISegmentedControl)和
查看>>
安装PhantomJS
查看>>
Dot Net FrameWork 4.0 学习笔记(3)
查看>>
我的友情链接
查看>>
python 列表生成式、生成器、迭代器、yield
查看>>
workflow engine Ruote初体验之三(条件与美元符号)
查看>>
关于某大型企业应用集成现状的思考
查看>>
调用百度地图-带导航的百度地图
查看>>
释放buff/cache
查看>>