Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/rahul-joy/shell-program-to-find-the-area-and-circumference-of-a-circle


https://github.com/rahul-joy/shell-program-to-find-the-area-and-circumference-of-a-circle

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# Shell-program-to-find-the-area-and-circumference-of-a-circle

echo "Enter the radious of the circle: "
read r

area=$(echo "3.14*$r*$r" | bc)

circum=$(echo "3.14*2*$r" | bc)

echo "area of the circle is: " $area

echo "circumference of the circle is: " $circum