← Back

Function Challenge 3 - Fahrenheit to Celsius


Introduction

This function converts a Fahrenheit temperature to its equivalent Celsius temperature.

Challenge Tasks

  1. Create a console project named FunctionChallenge3FtoC.
  2. Implement a function with the given signature:

C#

double FahrToCel(double fahrenheitTemp)

Python

def fahr_to_cel(fahrenheit_temp)