三角形角度公式:
#從上述公式中我們可以看出,要計算角度,就必須知道邊長,那我們該如何計算邊長呢?
首先我們需要知道三個頂點的座標,然後計算點與點之間的距離即可。
程式碼:
package com.zhuo.base.com.zhuo.base; import java.util.Scanner; public class ComputeAngles { public static void main(String[] args) { Scanner input = new Scanner(System.in); //提示用户输入三个点 System.out.print("Enter three points:"); double x1 = input.nextDouble(); double y1 = input.nextDouble(); double x2 = input.nextDouble(); double y2 = input.nextDouble(); double x3 = input.nextDouble(); double y3 = input.nextDouble(); //计算三条边 double a = Math.sqrt((x2 - x3) * (x2 - x3) + (y2 - y3) * (y2- y3)); double b = Math.sqrt((x1 - x3) * (x1 - x3) + (y1 - y3) * (y1 - y3)); double c = Math.sqrt((x1 - x2) * (x1 - x2) + (y1 - y2) * (y1 - y2)); //计算三个角 double A = Math.toDegrees(Math.acos((a * a - b * b - c * c) / (-2 * b * c))); double B = Math.toDegrees(Math.acos((b * b - a * a - c * c) / (-2 * a * c))); double C = Math.toDegrees(Math.acos((c * c - a * a - b * b) / (-2 * a * b))); //显示结果,保留小数点后两位 System.out.println("The three angles are " + Math.round(A * 100) / 100.0 + " " + Math.round(B * 100) / 100.0 + " " + Math.round(C * 100) / 100.0); } }
結果顯示:
#相關推薦:java入門教學
#以上是利用java解決三角形角度問題的詳細內容。更多資訊請關注PHP中文網其他相關文章!