2016-09-27 104 views
-1

我的代碼如下:四捨五入在我的最終輸出小數

import java.util.Scanner; 

public class AreaHexagon { 
public static void main(String[] args) { 
     Scanner s = new Scanner(System.in); 
     double side, area; 

     System.out.print("Enter the side:"); 
     side = s.nextDouble(); 

     area = ((3 * Math.pow(3, 0.5)/2)) * Math.pow(side, 2); 

     System.out.print("The area of the hexagon is " + area); 
    } 

}

我收到錯誤消息稱:6.6作爲邊長的答案應該是113.17,但我我得到113.17219976等等。我嘗試添加double roundOff = Math.round(side * 100)/ 100;但我無法讓它正常工作。

+0

您是否需要實際被截斷的數字,或者只是它的打印表示? – ApproachingDarknessFish

+0

結果與許多小數正確(可能甚至不合理)。所以它只能是關於印刷的表示 – devnull69

回答

5

使用此:System.out.printf("The area of the hexagon is %.2f", area);

1

爲了減少一些小數部分,你可以使用

System.out.printf("%.2f", area); 

道歉,我已經重複我寫我自己的函數,它被切割的小數部分在指定的應答位置:

public static double cutDecimalPart(double number, int position) { 
    int power = (int) Math.pow(10, position); 
    int big = (int) (number * power); 
    return (double) big/power; 
} 
+1

爲什麼你要複製答案? – prabodhprakash

+0

@prabodhprakash當我開始寫它時,沒有其他答案。 –

+1

我修改了我的答案,不要重複;) –

1
import java.util.Scanner; 

public class Hexagon { 
    public static void main(String[] args) { 
     Scanner s = new Scanner(System.in); 
     double side, area; 

     System.out.print("Enter the side:"); 
     side = s.nextDouble(); 




     area = ((3.0 * Math.pow(3.0, 0.5)/2.0)) * Math.pow(side, 2.0); 

     System.out.printf("The area of the hexagon is %.2f", area); 

    } 

}

這是固定的代碼,它運行平穩。感謝您的幫助@ alex-chermenin & @ wojciech-kazior

+0

如果你能接受我的答案爲正確答案,那將是一件很酷的事。我升級了它,歡呼! –