Create a program that will compute the basic salary of the employee, the daily rate of the employee is 80 pesos per hour the regular daily hours of the employee is 8 hours. Compute the total net gross of the employee in 22 days with the following deductions Pag-ibig = 150, SSS = 400, PhilHealth = 200.
public class Main {
public static void main(String[] args) {
System.out.println("Total net gross: " + (80 * 8 * 22 - 150 - 400 - 200));
}
}
Comments
Leave a comment