Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package ru.itsjava.oop.hw;
- public class Bird {
- private final String species;
- private double wingspan;
- public Bird(String species, double wingspan) {
- this.species = species;
- this.wingspan = wingspan;
- }
- public String toString(){
- return "Species: " + species + " / " + "Wingspan: " + wingspan;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment