Horje
write a bash program to print a given number in reverse order Code Example
write a bash program to print a given number in reverse order
n=123465
sd=0
rev=0
while [ $n -gt 0 ]
do
    sd=$(( $n % 10 ))
    rev=$(( $rev * 10 + $sd ))
    n=$(( $n / 10 ))
done
echo "Reverse number of entered digit is $rev"
write a bash program to print a given number in reverse order
1
1
1
1
1
1
1
1
1
1




Shell

Related
install opera ubuntu terminal command Code Example install opera ubuntu terminal command Code Example
kill port in linux Code Example kill port in linux Code Example
stop tomcat from terminal mac Code Example stop tomcat from terminal mac Code Example
kill port linux Code Example kill port linux Code Example
install audacity linux Code Example install audacity linux Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
22