class MathDemo
{
public static void main(String[] args)
{
/*特殊情况*/
//double d=3.1016; //小数点后第二位为0并且第三位小于5
double d=3.1966; //小数点后第二位为9并且第三位大于5
//double d=0.00025; //整数部分和小数后三位全为0(没写判断条件,都差不多,判断条件太长,看起来不爽)
sop(math(d));
}
public static String math(double d)
{
/*将指定小数乘以100,然后四舍五入*/
double d1=Math.round(d*100);
/*通过String的split方法获取小数点后第二位和第三位*/
String s =new Double(d).toString();
String[] str=s.split("\\.");
String[] str1=str[1].split("");
/*满足条件,数值除以100,再在末尾加一个"0",因为要保留两位小数*/
if (str1[2].equals("0")&&Integer.parseInt(str1[3])<5||str1[2].equals("9")&&Integer.parseInt(str1[3])>=5)
return d1/100+"0";