Thursday, May 1, 2008

Write a shell script to convert temperature in Fahrenheit to degree Centigrade.

echo “Enter F value”

read f

expr ‘c$=[$f-32]\*5/9’

echo c$

1 comment:

Anonymous said...

wrong code