Write a program that would print the information (name, year of joining, salary, address) of three employees by creating a class named 'Employee'. The output should be as follows:
Name Year of joining Address
Robert 1994 64C- WallsStreat
Sam 2000 68D- WallsStreat
John 1999 26B- WallsStreat
Answers
Answer:
In Java
class information
{
public static void main (String args[])
{
System.out.println("Name Year of joining Address");
System.out.println("Robert 1994 64C- WallsStreat");
System.out.println("Sam 2000 68D- WallsStreat");
System.out.println("John 1999 26B- WallsStreat");
}
}
Mark as brainliest
Answer:
class Employee
{
String Name;
int Year;
String Address;
Employee(String nam,int years, String addr)
{
Name=nam;
Year=years;
Address=addr;
}
void Sam()
{
System.out.println(Name+ " " +Year + " " +Address);
}
void Robert()
{
System.out.println(Name+ " " +Year + " " +Address);
}
void John()
{
System.out.println(Name+ " "+Year + " " +Address);
}
}
class EmployeeDetails
{
public static void main(String args[])
{
System.out.println("Name" + " Year of Joining " + "Address" );
Employee e=new Employee("Sam", 2000, "68D-WallsStreet");
e.Sam();
Employee e1=new Employee("Robert", 1994, "64C-WallsStreet");
e1.Robert();
Employee e2=new Employee("John", 2002, "70F-WallsStreet");
e2.Sam();
}
}
Explanation: