fork download
  1. //This is the class Person
  2. class Person
  3. {
  4. //attributes of class Person
  5. String name = "John Murphy";
  6. String phone = "003531234567";
  7. String email = "johnmurphy@yahoo.com";
  8.  
  9. //method to display details about the person
  10. System.out.println( " ");
  11. System.out.println( "Name " + name);
  12. System.out.println( " ");
  13. System.out.println( "Phone " + phone);
  14. System.out.println( " ");
  15. System.out.println( "E-mail" + email);
  16. System.out.println( " ");
  17. }
  18. }
Runtime error #stdin #stdout 0.02s 4980KB
stdin
Standard input is empty
stdout
Standard output is empty