用Java程序编写一个三角形的类,三条边为三个属性求三角形的面积和周长 5
展开全部
public class Triangle {
//三边的长度
public Double a;
public Double b;
public Double c;
public Double getA() {
return a;
}
public void setA(Double a) {
this.a = a;
}
public Double getB() {
return b;
}
public void setB(Double b) {
this.b = b;
}
public Double getC() {
return c;
}
public void setC(Double c) {
this.c = c;
}
public Triangle(Double a,Double b,Double c){
this.a = a;
this.b = b;
this.c = c;
}
/**
* 得到周长
* @return
*/
public Double getPerimeter(){
Double l = 0d;
l = a+b+c;
return l;
};
/**
* 得到面积
* @return
*/
public Double getArea(){
Double s = 0d;
Double p = getPerimeter()/2;
s = Math.sqrt(p*(p-a)*(p-b)*(p-c));
return s;
}
}
自己写测试方法就可以了。
//三边的长度
public Double a;
public Double b;
public Double c;
public Double getA() {
return a;
}
public void setA(Double a) {
this.a = a;
}
public Double getB() {
return b;
}
public void setB(Double b) {
this.b = b;
}
public Double getC() {
return c;
}
public void setC(Double c) {
this.c = c;
}
public Triangle(Double a,Double b,Double c){
this.a = a;
this.b = b;
this.c = c;
}
/**
* 得到周长
* @return
*/
public Double getPerimeter(){
Double l = 0d;
l = a+b+c;
return l;
};
/**
* 得到面积
* @return
*/
public Double getArea(){
Double s = 0d;
Double p = getPerimeter()/2;
s = Math.sqrt(p*(p-a)*(p-b)*(p-c));
return s;
}
}
自己写测试方法就可以了。
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询