From health tips to tech hacks, find it all on IDNLearn.com. Join our community to receive timely and reliable responses to your questions from knowledgeable professionals.

How to write pseudo code that compute net salary = basic salary + transport + medical + housing - deduction​

Sagot :

Answer:

Begin (Program Start)

Ask for BASIC SALARY from user!

Get BASIC SALARY.

Ask for TRANSPORT (FEE) from user!

Get TRANSPORT (FEE) .

Ask for MEDICAL (FEE) from user!

Get MEDICAL (FEE) .

Ask for HOUSING (FEE) from user!

Get HOUSING (FEE) .

Ask for DEDUCTION from user!

Get DEDUCTION.

NET SALARY = basic salary + transport + medical + housing - deduction

Calculate NET SALARY and DISPLAY it to the user.

End