⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 infocuboid.java

📁 Java 程序设计源码 只提供了部分
💻 JAVA
字号:
class Cuboid {
	int height,width,length;

	public int volume() {
		return height * width * length;
	}
}

class CuboidWeight extends Cuboid {
	int density;

	public int weight() {
		return super.volume() * density;
	}
}

class CuboidValue extends CuboidWeight {
	int value;

	public int cost() {
		return weight() * value;
	}
}

public class InfoCuboid {
	public static void main(String[] args) {
		CuboidValue cv = new CuboidValue();

		System.out.println(cv.volume());
		System.out.println(cv.weight());
		System.out.println(cv.cost());
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -