Advertisement
Guest User

Untitled

a guest
Feb 24th, 2020
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1.  
  2. // Driver class
  3. public class Registration {
  4.  
  5. public static void main( String[] args) {
  6.  
  7. Student s1 = new Student("Sim", 3.7F);
  8. Student s2 = new Student("Hazman" , 3.6F);
  9.  
  10. System.out.println(s1);
  11. System.out.println(s2);
  12.  
  13. }
  14.  
  15.  
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement