desant74268

OOPHW

Jan 16th, 2022
944
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.18 KB | None | 0 0
  1. package ru.itsjava.oop.hw;
  2.  
  3. public class Raven extends Bird{
  4.  
  5.     private static final String species = "Raven";
  6.  
  7.     public Raven() {
  8.         super(species, 56);
  9.     }
  10. }
  11.  
Advertisement
Add Comment
Please, Sign In to add comment