WT drive Get link Facebook X Pinterest Email Other Apps June 02, 2025 https://drive.google.com/drive/folders/1WP-o1PQjElkjy9gDAp_JysHnlxJ0cH0x?usp=drive_link Get link Facebook X Pinterest Email Other Apps Comments
1. 2271 5843 6. 5364 76662. 0117 3807 7. 3265 96063. 2947 1279 8. 5817 73544. 1841 5955 9. 0344 08135. 2950 9401 10. 8071 1384 October 16, 2024 1. 2271 5843 6. 5364 7666 2. 0117 3807 7. 3265 9606 3. 2947 1279 8. 5817 7354 4. 1841 5955 9. 0344 0813 5. 2950 9401 10. 8071 1384 Read more
employee August 04, 2024 import java.util.*; class Employee { String empName; String empId; int Salary; Scanner sc=new Scanner(System.in); void setempName(String n) { empName=n; } void setempId(String Id) { empId=Id; } void setSalary(int s) { Salary=s; } String getempName() { return empName; } int getSalary() { return Salary; } String getempId() { return empId; } void incrementSalary() { Salary=(int)Salary+(int)(Salary*0.2); } } class emp { public static void main(String agrs[]) { Employee e=new Employee(); e.setempName("Sanket Koshti"); e.setempId("1234abcd"); e.setSalary(20000); System.out.println("Name :"+e.getempName()); System.out.println("Employee ID :"+e.getempId()); System.out.println("EMployee Salary :"+e.getSalary()); System.out.println("After incrementing the salary :"); e.incrementSalary(); System.out.println("Name :"+e.getempName()); System.out.println(... Read more
Comments
Post a Comment