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

LeetCode - Crawler Log Folder Solution - The Coding Shala

N-th Tribonacci Number Solution - The Coding Shala

Java Program to Convert Binary to Decimal - The Coding Shala

New Year Chaos Solution - The Coding Shala

Java Program to Find LCM of Two Numbers - The Coding Shala