Thursday, May 1, 2008

Write a shell script to find the area of the circle ?

echo “Enter radius”
read r
expr “2.143\*$r\*$r”

1 comment:

Anonymous said...

echo “Enter radius”
read r
expr “2.143\*$r\*$r” | bc