Advertisement
joseleonweb

Untitled

Sep 15th, 2019
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.11 KB | None | 0 0
  1. char a, b;
  2. a = 'b';
  3. System.out.println(a);
  4. b = 'c';
  5. System.out.println(b);
  6. a = b;
  7. System.out.println(a);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement