This tutorial will teach you Employee Salary Calculation Project Java in IntelliJ IDEA.This example help will you to study Java Gui application development java projects for beginners. Paste the Following Code inside the Cal Button Event double salary = Double.parseDouble(txtSalary.getText()); double tax,nsal; if(salary > 50000) { tax = salary * 10/100; } else if(salary > 35000) { tax = …