Run ❯
Get your
own
website
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
Python
JavaScript
Java
C++
def convertToCelsius(fahrenheit): celsius = (fahrenheit - 32) * 5 / 9 return celsius print(convertToCelsius(100)) #Python
function convertToCelsius(fahrenheit) { const celsius = (fahrenheit - 32) * 5 / 9; return celsius; } console.log(convertToCelsius(100)); //JavaScript
public class Main { public static double convertToCelsius(double fahrenheit) { double celsius = (fahrenheit - 32) * 5.0 / 9.0; return celsius; } public static void main(String[] args) { System.out.println(convertToCelsius(100)); } } //Java
#include
#include
using namespace std; double convertToCelsius(double fahrenheit) { double celsius = (fahrenheit - 32) * 5.0 / 9.0; return celsius; } int main() { cout << to_string(convertToCelsius(100)) + "\n"; return 0; } //C++
Python result:
JavaScript result:
Java result:
CPP result:
37.77777777777778
37.77777777777778
37.77777777777778
37.7778