Guest User

Untitled

a guest
Jan 18th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. public class q {
  2. private static int bb;
  3. public q(int v){
  4. bb = v;
  5. }
  6. public void run() {
  7. System.out.print(bb);
  8. }
  9. }
  10.  
  11.  
  12. public class t {
  13. public static void main(String args[]) {
  14. q yy = new q(3);
  15. q uu = new q(7);
  16. yy.run();
  17. }
  18. }
Add Comment
Please, Sign In to add comment