计算长方体、四棱锥的表面积和体积

    xiaoxiao2021-03-25  119

    计算长方体、四棱锥的表面积和体积

    Time Limit: 1000MS Memory Limit: 65536KB Submit Statistic

    Problem Description

    计算如下立体图形的表面积和体积。

                

                             

    从图中观察,可抽取其共同属性到父类Rect中:长度:l  宽度:h  高度:z

    在父类Rect中,定义求底面周长的方法length( )和底面积的方法area( )。

     

    定义父类Rect的子类立方体类Cubic,计算立方体的表面积和体积。其中表面积area( )重写父类的方法。

    定义父类Rect的子类四棱锥类Pyramid,计算四棱锥的表面积和体积。其中表面积area( )重写父类的方法。

    输入立体图形的长(l)、宽(h)、高(z)数据,分别输出长方体的表面积、体积、四棱锥的表面积和体积。

    Input

     输入多行数值型数据(double);

    每行三个数值,分别表示l h z

    若输入数据中有非正数,则不表示任何图形,表面积和体积均为0。

    Output

     行数与输入相对应,数值为长方体表面积 长方体体积 四棱锥表面积 四棱锥体积(中间有一个空格作为间隔,数值保留两位小数)

    Example Input

    1 2 3 0 2 3 -1 2 3 3 4 5

    Example Output

    22.00 6.00 11.25 2.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 94.00 60.00 49.04 20.00

    Hint

     四棱锥体公式:V=1/3Sh,S——底面积 h——高

    Author

    zhouxq  import java.util.*; import java.math.*; abstract class rect { double a,b,c; abstract void area(double a,double b,double c); } class cubic extends rect { void area(double a, double b, double c) { System.out.print(String.format("%.2f",a*b*2+a*c*2+b*c*2)+" "+String.format("%.2f", a*b*c)+" "); } } class pyramid extends rect { void area(double a, double b, double c) { double x1 =(double) Math.sqrt(c*c+(b/2)*(b/2)); double x2 = (double)Math.sqrt(c*c+(a/2)*(a/2)); System.out.println(String.format("%.2f",a*x1+b*x2+a*b)+" "+String.format("%.2f", a*b*c/3)); } } public class Main { public static void main(String[] args) { Scanner input = new Scanner(System.in); while(input.hasNextDouble()) { double l = input.nextDouble(); double h = input.nextDouble(); double z = input.nextDouble(); if(l>0&&h>0&&z>0) { cubic cc = new cubic(); cc.area(l,h,z); pyramid pp = new pyramid(); pp.area(l, h, z); } else System.out.println("0.00 0.00 0.00 0.00"); } } }
    转载请注明原文地址: https://ju.6miu.com/read-25714.html

    最新回复(0)