Java语言的开发与学习——关于图形的面积和周长
好久没来CSDN了。这次收拾好心情。准备开始Java的开发了。
class Trangle { double sideA,sideB,sideC,area,length; boolean boo; public Trangle(double a,double b,double c) { this.sideA=a; this.sideB=b; this.sideC=c; //参数a,b,c分别赋值给sideA,sideB,sideC if((sideA+sideB > sideC) &&(sideA+sideB > sideC)&&( sideB+sideC >sideA)) //a,b,c构成三角形的条件表达式 { boo=true; //给boo赋值。 } else { boo=false; //给boo赋值。 } } double getLength() { length=sideA+sideB+sideC; return length; //方法体,要求计算出length的值并返回 } public double getArea() { if(boo) { double p=(sideA+sideB+sideC)/2.0; area=Math.sqrt(p*(p-sideA)*(p-sideB)*(p-sideC)) ; return area; } else { System.out.println("不是一个三角形,不能计算面积"); return 0; } } public void setABC(double a,double b,double c) { this.sideA=a; this.sideB=b; this.sideC=c; //参数a,b,c分别赋值给sideA,sideB,sideC if((sideA+sideB > sideC) &&(sideA+sideB > sideC)&&( sideB+sideC >sideA)) //a,b,c构成三角形的条件表达式 //a,b,c构成三角形的条件表达式 { boo=true; //给boo赋值。 } else { boo=false; //给boo赋值。 } }}class Lader { double above,bottom,height,area; Lader(double a,double b,double h) { this.above=a; this.bottom=b; this.height=h;//方法体,将参数a,b,c分别赋值给above,bottom,height } double getArea() { area=(this.above+this.bottom)*this.height/2; //方法体,,要求计算出area返回 } return area;}class Circle { double radius,area; Circle(double r) { this.radius=r; //方法体 } double getArea() { area=this.radius*this.radius*3.14; return area;//方法体,要求计算出area返回 } double getLength() { return 2*3.14*this.radius; //getArea方法体的代码,要求计算出length返回 } void setRadius(double newRadius) { radius=newRadius; } double getRadius() { return radius; }}public class AreaAndLength { public static void main(String args[]) { double length,area; Circle circle=null; Trangle trangle; Lader lader; circle = new Circle(2); //创建对象circle trangle =new Trangle( 3, 4, 5); //创建对象trangle。 lader = new Lader(3,5, 8); //创建对象lader length = circle.getLength();// circle调用方法返回周长并赋值给length System.out.println("圆的周长:"+length); area = circle.getArea(); // circle调用方法返回面积并赋值给area System.out.println("圆的面积:"+area); length = trangle.getLength(); // trangle调用方法返回周长并赋值给length System.out.println("三角形的周长:"+length); area = trangle.getArea(); // trangle调用方法返回面积并赋值给area System.out.println("三角形的面积:"+area); area = lader.getArea(); // lader调用方法返回面积并赋值给area System.out.println("梯形的面积:"+area); trangle.setABC(12, 34, 1); // trangle调用方法设置三个边,要求将三个边修改为12,34,1。 area = trangle.getArea();// trangle调用方法返回面积并赋值给area System.out.println("三角形的面积:"+area); length = trangle.getLength(); // trangle调用方法返回周长并赋值给length System.out.println("三角形的周长:"+length); }}