我的代碼如下:四捨五入在我的最終輸出小數
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;但我無法讓它正常工作。
您是否需要實際被截斷的數字,或者只是它的打印表示? – ApproachingDarknessFish
結果與許多小數正確(可能甚至不合理)。所以它只能是關於印刷的表示 – devnull69