answersLogoWhite

0

AllQ&AStudy Guides
Best answer

Echo Yamashita is 5' 1 1/2".

This answer is:
Related answers

Echo Yamashita is 5' 1 1/2".

View page

echo "*** Converting between the different temperature scales ***"

echo "1. Convert Celsius temperature into Fahrenheit"

echo "2. Convert Fahrenheit temperatures into Celsius"

echo -n "Select your choice (1-2) : "

read choice

if [ $choice -eq 1 ]

then

echo -n "Enter temperature (C) : "

read tc

# formula Tf=(9/5)*Tc+32

tf=$(echo "scale=2;((9/5) * $tc) + 32" |bc)

echo "$tc C = $tf F"

elif [ $choice -eq 2 ]

then

echo -n "Enter temperature (F) : "

read tf

# formula Tc=(5/9)*(Tf-32)

tc=$(echo "scale=2;(5/9)*($tf-32)"|bc)

echo "$tf = $tc"

else

echo "Please select 1 or 2 only"

exit 1

fi

View page

Echo and Nellie - 2012 In the Beginning--- 1-2 was released on:

USA: 27 March 2012

View page

Hungry In--- - 2012 Echo Park Los Angeles 1-2 was released on:

USA: 28 September 2012

View page

len=0

i=1

echo -n "Enter a String: "

read str

len=`echo $str | wc -c`

len=`expr $len - 1`

halfLen=`expr $len / 2`

while [ $i -le $halfLen ]

do

c1=`echo $str|cut -c$i`

c2=`echo $str|cut -c$len`

if [ $c1 != $c2 ] ; then

echo "string is not palindrome"

exit

fi

i=`expr $i + 1`

len=`expr $len - 1`

done

echo "String is Palindrome"

View page
Featured study guide
📓
See all Study Guides
✍️
Create a Study Guide
Search results