Guest User

Untitled

a guest
Oct 17th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.36 KB | None | 0 0
  1. package Granja;
  2. public class Animals{
  3.    
  4.  static class Gato{
  5.  
  6. public static void decirQuienSoy(){
  7. System.out.println("Soy un gato!");
  8. }
  9.  
  10. }
  11. static class Perro{
  12.  
  13. public static void decirQuienSoy(){
  14. System.out.println("Soy un perro!");
  15. }
  16.  
  17.  
  18. }
  19.  static class Gallina {
  20.  
  21.  
  22. public static void decirQuienSoy(){
  23. System.out.println("Soy una Gallina!");
  24. }
  25. }}
Add Comment
Please, Sign In to add comment