Advertisement
Guest User

Untitled

a guest
Dec 17th, 2018
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.41 KB | None | 0 0
  1. class gayhouse {
  2.     public static void main(String[] args) {
  3.  
  4.         Gomik gomik = new Gomik(true);
  5.  
  6.         System.out.println("этот гомик " + ((gomik.active)? "" : "не ") + "подставляет жопу" );
  7.  
  8.     }
  9. }
  10.  
  11. class Pidor{
  12.     boolean active = false;
  13.  
  14.     Pidor(){
  15.     }
  16.  
  17.     Pidor (boolean activeFlag){
  18.         this.active = activeFlag;
  19.     }
  20. }
  21.  
  22. class Gomik extends Pidor{
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement