package { class CtoF { public static function convertCtoF(celsius:Number):Number { return ((celsius * 9) / 5 + 32); } public static function convertFtoC(fahrenheit:Number):Number { return 5/9 * (fahrenheit - 32); } } }