Guest User

Untitled

a guest
Sep 25th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. public class Test
  2. {
  3. public static void main(String args[])
  4. {
  5. Car c = new Car();
  6. c.whoAmI();
  7. }
  8. }
  9.  
  10. class Car
  11. {
  12. public String mark = "undefined";
  13.  
  14. public void whoAmI()
  15. {
  16. System.out.println("I am " + mark);
  17. }
  18. }
Add Comment
Please, Sign In to add comment