Write a function that takes one argument-F for Fahrenheit-and computes the result of the following equation (converting the temperature to Celsius).
C = (F – 32) * (5 / 9)
______ tempConverter(float ________) {
_____ _______ = ______________
_____________________________
}
Answer:
void setup() {
float temp = tempConverter(50);
println(temp);
}
float tempConverter(float farenheit) {
float celsius = (farenheit - 32) * (5.0/9.0);
return celsius;
}








