java student constructor
java student constructor
Scanner;
public class student
{
int sroll;
String sname;
String saddress;
String smail;
void display()
{
System.out.println("The student details are ");
System.out.println("The student roll no is "+sroll);
System.out.println("The student name is "+sname);
System.out.println("The student address is "+saddress);
System.out.println("The student mail id is "+smail);
}
s1.display();
s2.display();
s3.display();
}
}