[ create a new paste ] login | about

Link: http://codepad.org/dxMyUAVn    [ raw code | output | fork ]

PHP, pasted on Jun 26:
1
2
3
4
5
6
7
8
9
<?php
    //Define the function
    function FahrenheitToCelsius($degrees) {
        return ($degrees - 32) * (5 / 9);
    }

    //Call the function
    echo FahrenheitToCelsius(80);
?>


Output:
1
26.666666666667


Create a new paste based on this one


Comments: