Java是一種廣泛應用于實現各種應用程序的編程語言。其中包括計算物品的體積和重量。下面,我們將介紹Java的兩個簡單示例,計算物品的體積和重量。
public class Item { private double length, width, height, weight; public Item(double length, double width, double height, double weight){ this.length = length; this.width = width; this.height = height; this.weight = weight; } public double volume(){ return length * width* height; } public double weight(){ return weight; } }
上面的代碼定義了一個物品類(Item),其中包含了物品的尺寸和重量。類中包含了兩個方法,一個計算物品的體積,另一個計算物品的重量。下面是使用這個物品類的示例。
public class Main { public static void main(String[] args) { Item item = new Item(10, 20, 30, 50); double volume = item.volume(); double weight = item.weight(); System.out.println("物品體積:" + volume + "立方厘米"); System.out.println("物品重量:" + weight + "克"); } }
上面的代碼創建了一個Item對象,使用這個對象調用了volume()方法和weight()方法,來計算物品的體積和重量。最后,將結果打印到控制臺。