Headlines
Loading...
Program in UNIX to calculate gross salary

Program in UNIX to calculate gross salary

Ramesh’s basic salary is input through the keyboard. His dearness allowance is 55% of basic salary, and house rent allowance is 40% of basic salary. Write a program to calculate gross salary.

echo "Enter the basic salary"
read sal

da=`echo 0.55 \* $sal |bc`
hra=`echo 0.40 \* $sal |bc`
gross=`echo  $sal + $da + $hra |bc`

echo "Basic Salary: $sal"
echo "DA          : $da"
echo "HRA         : $hra"
echo "---------------------"
echo "GROSS SALARY: $gross"
*** PLEASE checkout the Best deals from for top sites like Amazon, Flipkart etc ***