Write a method named celsiusToFahrenheit(int c) which returns the equivalent temperature in Fahrenheit for a temperature in Celsius. The formula is F=9/5C+32. Remember that the method only return a v
a) 9/5C+32
b) F=9/5*C+32
c) Celsius * (9/5) + 32
d) All of the above