Advertisement
saykotislam

201-15-13993_10

Feb 21st, 2021
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.57 KB | None | 0 0
  1. package lab;
  2. class Employee{
  3.     void output(){
  4.         System.out.println("a.\tName        Year of joining        Address");
  5.         System.out.println("b.\tRobert            1994             64C- WallsStreat");
  6.         System.out.println("c.\tSam               2000             68D- WallsStreat");
  7.         System.out.println("d.\tJohn              1999             26B- WallsStreat");
  8.     }
  9. }
  10.  
  11.  
  12. public class objem {
  13.     public static void main(String[] args) {      
  14.         Employee info=new Employee();
  15.            info.output();                            
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement