public class StudentMain { public static void main(String[] args) { // TODO Auto-generated method stub Student std = new Student(); std.displayAccount(); System.out.println("______________________________________________"); std.setrollNo(1); std.setname("Dr.Jojo"); std.setpercentage(99.9f); std.setsportName("Dr.Drive"); std.displayAccount(); } }