class EmployInfo
{int EmpId=10;
float EmpSal=20;
EmployInfo(int EmpId,float EmpSal)
{
this.EmpId=EmpId;
this.EmpSal=EmpSal;
}
void GetImpinfo()
{
System.out.println("Employ Information");
System.out.println("Employ id is "+EmpId);
System.out.println("Employ Sal is "+EmpSal);
}
}
class Organisation
{
public static void main(String[] args)
{
System.out.println("Hello World!");
EmployInfo Emp1 = new EmployInfo(101,30000);
Emp1.GetImpinfo();
EmployInfo Emp2 = new EmployInfo(201,30000);
Emp2.GetImpinfo();
EmployInfo Emp3 = new EmployInfo(301,30000);
Emp3.GetImpinfo();
}
}
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter