Thursday, June 21, 2018

Write a shell script to find sum of digits of a number. - OS

echo "enter the number"
read n
sum=0
a=$n
while(($n >0))
do
x=`expr $n % 10`
sum=`expr $sum + $x`
n=`expr $n / 10`
done
echo "the sum of $a is $sum"

No comments:

Post a Comment