# SS1
# Calculates the gross salary
# Usage : SS1
echo Enter the basic salary
read bsal
da=’echo $bsal \* 20/100 | bc‘
hra=’echo $bsal \*10/100 | bc‘
gs=’echo $bsal + $da + $hra | bc‘
echo “Gross salary = Rs.$gs”
No comments:
Post a Comment