Advertisement
Guest User

Untitled

a guest
Dec 11th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. interface color{
  2. public void cat();
  3. public void dog();
  4.  
  5. }
  6.  
  7. class Animals_color implements color{
  8.  
  9. public void cat(){
  10.  
  11. System.out.println(" is color orange");
  12. }
  13.  
  14. public void dog(){
  15. System.out.println(" is color balack and white");
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement