标签:
package demo1004; import java.text.DecimalFormat; import java.util.Scanner; public class Main { /** * @param args */ public static void main(String[] args) { Scanner input = new Scanner(System.in); float value = 0; float number = 0; for(int i =0;i<12;i++) { number = Float.valueOf(input.nextLine()).floatValue(); value+=number; } DecimalFormat df = new DecimalFormat(".00"); float result = (float) ((float)value/12.0); String str = df.format(result); System.out.println("$"+str); } }
描述(poj1004)
输入
输出
样例输入
100.00 489.12 12454.12 1234.10 823.05 109.20 5.27 1542.25 839.18 83.99 1295.01 1.75
样例输出
$1581.42
标签:
原文地址:http://www.cnblogs.com/aicpcode/p/4252096.html