Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

Execute Bash Shell Online

echo "enter the number"
read n
q=$n
a=0
while [ $q – gt 0 ]
do
r= `expr $q % 10 `

 

q= `expr $q / 10 `
a=`expr $a + $r /* $r /*$r `
done
if [ $a=$n ]
then
echo "the number $n is armstrong number"
else
echo "the number $n is not armstrong number"
fi

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.