哪一行代码能正确完成华氏温度到摄氏温度的计算?
celsius = (fahrenheit - 32) * 9 / 5;
celsius = fahrenheit - 32 * 5 / 9;
celsius = (fahrenheit + 32) * 5 / 9;
celsius = (fahrenheit - 32) * 5 / 9;