Your task is to write a program that converts a temperature from Celsius to Fahrenheit. This time, we’ll focus on encapsulating the code into functions/methods.
Python
def celsius_to_fahrenheit(celsius): # code
C#
double CelsiusToFahrenheit(double celsius){ // code}