用Java语言写一朵花
时间: 2023-07-20 13:39:37 浏览: 144
java 打印玫瑰
好的,以下是用Java语言写一朵花的示例代码:
```
public class Flower {
private String color;
private String type;
private int numberOfPetals;
public Flower(String color, String type, int numberOfPetals) {
this.color = color;
this.type = type;
this.numberOfPetals = numberOfPetals;
}
public void bloom() {
System.out.println("The " + color + " " + type + " flower is blooming with " + numberOfPetals + " petals.");
}
public static void main(String[] args) {
Flower rose = new Flower("red", "rose", 5);
rose.bloom();
}
}
```
这个程序定义了一个名为`Flower`的类,其中包含颜色、类型和花瓣数量等属性,并实现了一个`bloom()`方法来描述花朵的开放状态。在`main()`方法中,创建了一个红色、5瓣的玫瑰花对象,并调用`bloom()`方法来打印花朵开放的信息。
阅读全文