Online JudgeProblem SetAuthorsOnline ContestsUser
Web Board
Home Page
F.A.Qs
Statistical Charts
Problems
Submit Problem
Online Status
Prob.ID:
Register
Update your info
Authors ranklist
Current Contest
Past Contests
Scheduled Contests
Award Contest
User ID:
Password:
  Register

纪念一下自己烂到不行的英语,题目要求的输出时两位小数四舍五入

Posted by luobin2011 at 2011-07-26 13:40:11 on Problem 1004
import java.text.DecimalFormat;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sca = new Scanner(System.in);
		double sum = 0.0;
		for(int i=0; i<12; i++)
		{
			sum += sca.nextDouble();
		}
//		System.out.println("$" + (sum / 12.0));
		DecimalFormat df = new DecimalFormat("0.00");
		System.out.println("$" + df.format(sum / 12.0));
	}
}

Followed by:

Post your reply here:
User ID:
Password:
Title:

Content:

Home Page   Go Back  To top


All Rights Reserved 2003-2013 Ying Fuchen,Xu Pengcheng,Xie Di
Any problem, Please Contact Administrator