blob: 0a6607d6f74a74589c257518f09c898c76692051 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
set fahrenheit to 0
set celcius to 0
print "Enter tempeartue in Fahrenheit: "
input into fahrenheit
set celcius = 5 / 9 * (fahrenheit - 32)
print fahrenheit + " degrees F = " + celcius + " degrees C"
|