Advertisement
Guest User

Untitled

a guest
Jan 18th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. package SchoolSystem;
  2.  
  3. public class Test {
  4.  
  5. public static void main(String args[])
  6. {
  7. Teacher Tong = new Teacher("Tongov","8392130",new Course("MTM"));
  8. System.out.println("The name of theacher is:" + Tong.getName() +"\n" + "Subject which he is teach in:" + Tong.c.getSubject()+"\n" + "Successfull !!!!");
  9.  
  10.  
  11.  
  12.  
  13.  
  14. }
  15.  
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement