echo “Enter radius”read rexpr “2.143\*$r\*$r”
echo “Enter radius”read rexpr “2.143\*$r\*$r” | bc
Post a Comment
1 comment:
echo “Enter radius”
read r
expr “2.143\*$r\*$r” | bc
Post a Comment