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
Please leave a comment below if you like this post or found some error, it will help me to improve my content.

Comments

Popular Posts from this Blog

Shell Script to Create a Simple Calculator - The Coding Shala

Richest Customer Wealth LeetCode Solution - The Coding Shala

Add two numbers in Scala - The Coding Shala

New Year Chaos Solution - The Coding Shala