0
functions
what should i do for taking the Celsius value as an argument and return the corresponding Fahrenheit value. with this functions 9/5*36+32 output should be 96.8
2 Réponses
+ 2
Which programming language u want to use?. Please post complete detailed questions for letting everyone know waht you want.
+ 2
Mention about the programing language name.
For python
def change(c):
f = (c * (9/5)) + 32
return f