package little_car;
import java.util.Scanner;
public class Test2 {
public double firstEdge;
public double secondEdge;
public double thridEdge;
public void striangleArea() {
if (firstEdge + secondEdge > thridEdge && firstEdge + thridEdge > secondEdge && secondEdge + thridEdge > firstEdge) {
double p = (firstEdge + secondEdge + thridEdge) / 2;
double area = Math.sqrt(p * (p - firstEdge) * (p - secondEdge) * (p - thridEdge));
System.out.println("输出三角形的面积:" + area);
} else {
double min;
min = (firstEdge < secondEdge) ? firstEdge : secondEdge;
min = (min < thridEdge) ? min : thridEdge;
double area = min * min * Math.sqrt(3) / 4;
System.out.println("输出三角形的面积:" + area);
}
}
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
Test2 tr = new Test2();
System.out.print("请输入三个数:");
tr.firstEdge = scan.nextInt();
tr.secondEdge = scan.nextInt();
tr.thridEdge = scan.nextInt();
tr.striangleArea();
}
}
|