请在 下方输入 要搜索的题目:

阅读源代码,写程序运行结果:public interface Shape { public double area();}public class Rectangle implements Shape{ private double width; private double height; public Rectangle(double w, double h) { width = w; height = h;} public Rectangle(double w) { width = w; height = w;} public Rectangle() { width = 1; height = 1; } @Override public double area() { return width*height; }}public class Circle implements Shape { private double radius; private static final double PI = 3.14; public Circle(double r) { radius = r;} public Circle() { radius = 1; } @Override public double area() { return radius*radius*PI; }} public class ShapeTest{ public static void main(String[] args) { Shape[] shapes = new Shape[5]; shapes[0] = new Rectangle(1,2); shapes[1] = new Rectangle(3); shapes[2] = new Rectangle(); shapes[3] = new Circle(2); shapes[4] = new Circle(); for(int i=0;i

发布时间:2024-05-22 09:53:46
推荐参考答案 ( 由 搜题小帮手 官方老师解答 )
联系客服
答案:

以下文字与答案无关

提示:有些试题内容 显示不完整,文字错误 或者 答案显示错误等问题,这是由于我们在扫描录入过程中 机器识别错误导致,人工逐条矫正总有遗漏,所以恳请 广大网友理解。

相关试题
登录 - 搜题小帮手
点我刷新
立即注册
注册 - 搜题小帮手
点我刷新
立即登录