/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ /* Let's play computer and come up with the printed output on our own. */ */ /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ public class GuessTheOutput{ static int x = 11; // only one copy in memory! private int y = 33; public void method1(int x){ GuessTheOutput t = new GuessTheOutput(); this.x = x; y = 44;       System.out.println("GuessTheOutput.x = " + GuessTheOutput.x);     System.out.println("t.x = " + t.x);     System.out.println("t.y = " + t.y);     System.out.println("y = " + y);   }     public static void main(String args[]){     GuessTheOutput t = new GuessTheOutput(); // implicit empty construtor     t.method1(5); } }