Shell Script to find sum, product and average of given numbers - The Coding Shala
Home >> Scripting >> Sum, product and average
Shell Script to find the sum, product, and the average of given numbers
Read four integer numbers from the user and find the sum, product, and average of these four numbers?
Code:
#!/bin/bash echo "enter four integers" read a b c d sum=$(echo "$a + $b + $c + $d" | bc -l) average=$(echo "$sum / 4" | bc -l) product=$(echo "$a * $b * $c * $d" | bc -l) echo "sum = $sum" echo "Average = $average" echo "Product = $product"
Other Posts You May Like
Comments
Post a Comment