Tag Archives: Java

Java Double: 四舍五入并设置小数点位数

基础啊基础, 基础牢了省多少时间啊….

More…

Posted in Java | Tagged , , | Leave a comment

为Eclipse指定JDK

菜鸟上路记.

image

Posted in Java | Tagged , , | Leave a comment

Java: 计算平均分, 标准差, 标准分

本类提供标准差,标准分计算的Utility.

More…

Posted in Java | Tagged , , , | Leave a comment

Java 保持小数点后若干位的操作

DecimalFormat df2 = new DecimalFormat("###.00");
or:
(double) (Math.round(sd3*100)/100.0);
 

09下高一期终语文-平均分
09下期终英语-平均分
09高一下期中考试-

More…

Posted in Java | Tagged | Leave a comment

Java: Map遍历

// 2. 遍历map中所有的元素
Iterator iter = mapSheet.entrySet().iterator();
while(iter.hasNext()) {
Entry entry = iter.next();
int sheetIndex = entry.

More…

Posted in Java | Tagged , , | 1 Comment